Add: main.tsx
This commit is contained in:
parent
f482dd5cf8
commit
27f10cdb64
3 changed files with 11 additions and 0 deletions
0
frontend/src/index.css
Normal file
0
frontend/src/index.css
Normal file
10
frontend/src/main.tsx
Normal file
10
frontend/src/main.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import { StrictMode } from 'react'
|
||||||
|
import { createRoot } from 'react-dom/client'
|
||||||
|
import './index.css'
|
||||||
|
import App from './App.tsx'
|
||||||
|
|
||||||
|
createRoot(document.getElementById('root')!).render(
|
||||||
|
<StrictMode>
|
||||||
|
<App />
|
||||||
|
</StrictMode>,
|
||||||
|
)
|
1
frontend/src/vite-env.d.ts
vendored
Normal file
1
frontend/src/vite-env.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/// <reference types="vite/client" />
|
Loading…
Add table
Reference in a new issue