Emotion Js Hamburger animation
问题 Hello I'm trying to make an animation with emotion js typescript and redux for some reason my animation is not working I don't know if the problem is in my type because my state works normally as in the image: Code : TSX : interface RootState { sideBarStatus: boolean; } interface SideBar { isOpen: boolean; } const LogoNavigation: React.FC<SideBar> = ({ isOpen }) => { const dispatch = useDispatch(); console.log(isOpen); return ( <LogoSide> <img src={Logo} alt="Logo Elo Ghost" /> <Hamburguer