"use client" import { Button, Center, For, HStack, Stack } from "@chakra-ui/react" import { useState } from "react" export const TokensAnimationStyle = () => { const [animation, setAnimation] = useState(undefined) return ( {(animation) => ( )}
setAnimation(undefined)} bg="bg" data-placement="bottom" borderWidth="1px" p="4" > Animation
) }