jonbio/components/TableWrapper.tsx

10 lines
175 B
TypeScript
Raw Normal View History

const TableWrapper = ({ children }) => {
return (
<div className="w-full overflow-x-auto">
<table>{children}</table>
</div>
)
}
export default TableWrapper