sendou.ink/app/components/Table.tsx
Kalle d4d6002344
New results tab for tournaments (#1876)
* 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
2024-09-08 11:25:10 +03:00

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>
);
}