//src/App.js import './snow.css' const A = () => [ const Snowflake = ({ style }) => { return ( {'\u2745'} ); }; const makeSnowFlakes = () => { let animationDelay = '0s'; let fontSize = '14px'; const arr = Array.from('Merry Christmas!!!'); return arr.map((el, i) => { animationDelay = `${(Math.random() * 16).toFixed(2)}s`; fontSize = `${Math.floor(Math.random() * 10) + 10}px`; const style = { anim..