buzzword-bingo/src/app/page.tsx

9 lines
183 B
TypeScript
Raw Normal View History

2023-11-03 19:08:20 +01:00
import BingoController from './components/bingocontroller'
import ThemeSwitcher from './components/themeswitcher'
2023-11-02 23:08:51 +01:00
export default function Home(){
return(
2024-02-13 01:21:23 +01:00
<BingoController/>
2023-11-02 23:08:51 +01:00
);
2023-11-02 13:51:09 +01:00
}