update: game core flow pages

This commit is contained in:
Vick Scarlet
2026-08-16 20:06:16 +08:00
committed by 神戸小鳥
parent 25bd9ce2b7
commit 0c0fac5bfd
34 changed files with 890 additions and 768 deletions
-4
View File
@@ -1,8 +1,6 @@
import { createRoot } from 'react-dom/client'
import { StrictMode } from 'react'
import { Game } from './Game'
import { ThemeToggle } from './components/ThemeToggle'
import { Jotai } from './jotai'
import './styles/colors.css'
import './styles/common.css'
@@ -10,8 +8,6 @@ const container = document.getElementById('remake')!
const root = createRoot(container)
root.render(
<StrictMode>
<Jotai />
<ThemeToggle />
<Game />
</StrictMode>,
)