mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
* Initial * Try npm in deploy script * Progress * Progress * Progress * Add missing index * Title to user results page * Hide SPR before tournament over * Results page and redirect * SPR info * Row bg colors * Laoyut shift fix * Hide Swiss start round button if bracket is in preview * Fix e2e test * Not needed * one more revert
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
export function Table({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="my-table__container">
|
|
<table className="my-table">{children}</table>
|
|
</div>
|
|
);
|
|
}
|