Files
web/components/TempDesignSystem/Table/TD.tsx
2024-08-06 10:52:44 +02:00

8 lines
166 B
TypeScript

import styles from "./table.module.css"
function TD({ children }: React.PropsWithChildren) {
return <td className={styles.td}>{children}</td>
}
export default TD