import styles from './bingo.module.css'
interface Props{
text: string;
}
export default function BingoItem({text}: Props){
return(
<td className={styles.td}>{text}</td>
);