/** @jsx jsx */ import { jsx } from "@emotion/core"; import { Box, css, useTheme, useColorMode } from "@chakra-ui/core"; const scrollbar = { dark: "whiteAlpha.300", light: "blackAlpha.300" }; const scrollbarHover = { dark: "whiteAlpha.400", light: "blackAlpha.400" }; const scrollbarBg = { dark: "whiteAlpha.50", light: "blackAlpha.50" }; const MainTable = ({ children, ...props }) => { const theme = useTheme(); const { colorMode } = useColorMode(); return ( {children} ); }; MainTable.displayName = "MainTable"; export default MainTable;