2023-11-02 13:51:09 +01:00
|
|
|
import styles from './page.module.css'
|
2023-11-02 23:08:51 +01:00
|
|
|
import Bingo from './components/bingo.tsx'
|
|
|
|
|
|
|
|
export default function Home(){
|
2023-11-02 23:38:12 +01:00
|
|
|
const items=["test1", "test2", "test3", "test4", "test5"];
|
2023-11-02 23:08:51 +01:00
|
|
|
return(
|
|
|
|
<main className={styles.main}>
|
|
|
|
<h1 align="center">Buzzword Bingo</h1>
|
2023-11-02 23:38:12 +01:00
|
|
|
<Bingo size={2} items={items}/>
|
2023-11-02 23:08:51 +01:00
|
|
|
</main>
|
|
|
|
);
|
2023-11-02 13:51:09 +01:00
|
|
|
}
|