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