forked from imbytecat/fullstack-starter
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import { SplashApp } from './components/SplashApp'
|
|
import './styles.css'
|
|
|
|
// biome-ignore lint/style/noNonNullAssertion: 一定存在
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<SplashApp />
|
|
</StrictMode>,
|
|
)
|