import { ReactNode } from "react"; import "./Table.css"; import { getCN, usePadding, renderProps } from "../utils"; function Table({ children, ...props }: { props?: any; [x: string]: any; }) { return (
{children}
); } export default Table;