8 lines
166 B
TypeScript
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
|