diff --git a/src/components/App.tsx b/src/components/App.tsx index 3c4573d..951569b 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -1,5 +1,41 @@ +import { useState, useRef } from "react"; +import { Difficulty } from "../types"; +import { GameStateManager } from "../game/state"; +import { Menu } from "./Menu"; +import { DifficultySelect } from "./DifficultySelect"; + +type Screen = "menu" | "difficulty" | "game" | "gameover"; + function App() { - return
+ Match pairs of tiles by connecting them with up to 3 lines +
+ +