2023-11-02 13:51:09 +01:00
|
|
|
import styles from './page.module.css'
|
2023-11-03 00:03:08 +01:00
|
|
|
import BingoController from './components/bingocontroller.tsx'
|
2023-11-02 23:08:51 +01:00
|
|
|
|
|
|
|
export default function Home(){
|
|
|
|
return(
|
|
|
|
<main className={styles.main}>
|
|
|
|
<h1 align="center">Buzzword Bingo</h1>
|
2023-11-03 00:03:08 +01:00
|
|
|
<BingoController/>
|
2023-11-02 23:08:51 +01:00
|
|
|
</main>
|
|
|
|
);
|
2023-11-02 13:51:09 +01:00
|
|
|
}
|