buzzword-bingo/src/app/components/bingoitem.tsx

12 lines
181 B
TypeScript
Raw Normal View History

2023-11-02 23:08:51 +01:00
import styles from './bingo.module.css'
2023-11-02 23:38:12 +01:00
interface Props{
text: string;
}
export default function BingoItem({text}: Props){
2023-11-02 23:08:51 +01:00
return(
2023-11-02 23:38:12 +01:00
<td className={styles.td}>{text}</td>
2023-11-02 23:08:51 +01:00
);
}