import styled, { keyframes } from 'styled-components';
import { bounce } from 'react-animations';
const bounceAnimation = keyframes`${bounce}`;
const BouncyDiv = styled.div`
animation: 1s ${bounceAnimation};
`;
animatedItem: {
animation: `$myEffect 1000ms ${theme.transitions.easing.easeInOut}`,
},
"@keyframes myEffect": {
"0%": {
opacity: 0,
transform: "translateY(300%)",
},
"100%": {
opacity: 1,
transform: "translateY(0)",
},
},