8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import styles from "./table.module.css"
|
|
|
|
function TH({ children }: React.PropsWithChildren) {
|
|
return <th className={styles.th}>{children}</th>
|
|
}
|
|
|
|
export default TH
|