Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import Animate from '../index';
function AnimateExample( props ) {
return props.exampleCode;
}
Animate.displayName = 'Animate';
AnimateExample.displayName = 'Animate';
AnimateExample.defaultProps = {
exampleCode: (
<Animate type="appear">
This content will animate on rendering. You may have to reload the page to see the effect.
</Animate>
),
};
export default AnimateExample;