import { Box, Table as ChakraTable, Thead, Tbody, Tfoot, Tr, Th, Td, TableCaption, } from "@chakra-ui/react"; import { FunctionComponent } from "react"; const Table: FunctionComponent = ({ children }) => ( {children} ); export { Table, Tfoot, Tbody, Td, Thead, Tr, Th, TableCaption };