mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2026-08-28 01:06:49 +08:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import { createRoot } from 'react-dom/client'
|
|
import { StrictMode } from 'react'
|
|
import { Game } from './Game'
|
|
import './styles/colors.css'
|
|
import './styles/common.css'
|
|
|
|
const container = document.getElementById('remake')!
|
|
const root = createRoot(container)
|
|
root.render(
|
|
<StrictMode>
|
|
<Game />
|
|
</StrictMode>,
|
|
)
|