Implemented data parameters

This commit is contained in:
2023-11-02 23:38:12 +01:00
parent 3cb85e6273
commit ae80324a46
4 changed files with 26 additions and 15 deletions

View File

@@ -2,10 +2,11 @@ import styles from './page.module.css'
import Bingo from './components/bingo.tsx'
export default function Home(){
const items=["test1", "test2", "test3", "test4", "test5"];
return(
<main className={styles.main}>
<h1 align="center">Buzzword Bingo</h1>
<Bingo/>
<Bingo size={2} items={items}/>
</main>
);
}