/** @jsx jsx */ import { jsx } from "@emotion/core"; import { Box, css } from "@chakra-ui/core"; const TableBody = ({ children, ...props }) => ( {children} ); export default TableBody;