sendou.ink/app/components/Table.tsx
Kalle eb28accd97
Build Analyzer visualizations (#1517)
* Initial

* Pass mainWeaponId

* Repeating args to "context"

* Fix todos

* Date header

* Fix comparison showing for sub weapon def dmg even if no abilities selected

* Sub damage table charts

* Chart dot focus style

* Color grid initial

* Can change shots in the grid

* Optimize perf

* Style - cells

* Grid hover effect

* Mobile friendly
2023-10-01 12:20:48 +03:00

4 lines
128 B
TypeScript

export function Table({ children }: { children: React.ReactNode }) {
return <table className="my-table">{children}</table>;
}