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