Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Animate, Notice } from '@wordpress/components';
const AnimateExample = () => (
<Animate type="loading">
{ ( { className } ) => (
<Notice className={ className } status="success">
<p>Loading animation</p>
</Notice>
) }
</Animate>
);
export default AnimateExample;