Document pages, data model, and design system in CLAUDE.md

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 00:06:46 -05:00
parent 4f852d7902
commit 3b6bd6815d
2 changed files with 71 additions and 3 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ export default function App() {
setPage('setup')
}
function handleStart() {
const newGame: GameState = { players: [], rounds: [] }
function handleStart(players: string[]) {
const newGame: GameState = { players, rounds: [] }
saveGame(newGame)
setGame(newGame)
setPage('scoresheet')