chore: organize table exports

This commit is contained in:
Arvid Norlin
2024-08-06 10:52:44 +02:00
parent 4005701c79
commit aefa779a17
7 changed files with 58 additions and 31 deletions
@@ -0,0 +1,7 @@
import styles from "./table.module.css"
function TBody({ children }: React.PropsWithChildren) {
return <tbody className={styles.tbody}>{children}</tbody>
}
export default TBody