import { Flex, Spinner } from '@chakra-ui/react'; import { useColorValue } from '~/context'; export const Loading: React.FC = () => { const bg = useColorValue('white', 'black'); const color = useColorValue('black', 'white'); return ( ); };