import React from 'react'; import { Spinner, Flex } from '@chakra-ui/react'; const Loading = ({ fixed = true }: { fixed?: boolean }) => { return ( ); }; export default Loading;