import * as React from "react"; import { Box, useColorMode } from "@chakra-ui/core"; const Table = props => ( ); const bg = { light: "blackAlpha.50", dark: "whiteAlpha.50" }; const TableHeader = props => { const { colorMode } = useColorMode(); return ( ); }; const TableCell = ({ isHeader = false, ...props }) => ( ); export { TableCell, TableHeader, Table };