import React from 'react'; import { Container } from './Confetti.styled'; export const Confetti: React.FunctionComponent = ({ children }) => { const leafElements = React.useMemo( () => Array.from({ length: 20 }, (_, index) => ( )), [], ); return ( {children} {leafElements} ); };