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
+7
View File
@@ -0,0 +1,7 @@
import styles from "./table.module.css"
function TD({ children }: React.PropsWithChildren) {
return <td className={styles.td}>{children}</td>
}
export default TD