You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
325 B
Plaintext
12 lines
325 B
Plaintext
11 months ago
|
import React from 'react'
|
||
|
import ReactDOM from 'react-dom/client'
|
||
|
import { RouterProvider } from "react-router-dom";
|
||
|
import { router } from './router/index'
|
||
|
import './main.css'
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||
|
<React.StrictMode>
|
||
|
<RouterProvider router={router} />
|
||
|
</React.StrictMode>,
|
||
|
)
|