Animate CSS Generator
npm install animate-css-generatorbash
npm i animate-css-generator
`
Usage
`jsx
import React from "react";
import animated from "animate-css-generator/animations/animated";
import animatedInfinite from "animate-css-generator/animations/animatedInfinite";
import bounce from "animate-css-generator/animations/bounce";
function App() {
return (
${animated} ${bounce}}>Bounce
${animated} ${bounce} ${animatedInfinite}}>Bounce Infinite
);
}
``