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