Files
lixiyu-net/components/mdx/TableWrapper.tsx
2023-12-25 17:21:39 +08:00

10 lines
209 B
TypeScript

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