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