sendou.ink/app/components/Table.tsx
Kalle fef1ffc955
Design refresh + a bunch of stuff (#2864)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-03-19 17:51:42 +02:00

10 lines
227 B
TypeScript

import styles from "./Table.module.css";
export function Table({ children }: { children: React.ReactNode }) {
return (
<div className={styles.container}>
<table className={styles.table}>{children}</table>
</div>
);
}