mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-15 23:31:10 +00:00
14 lines
356 B
TypeScript
14 lines
356 B
TypeScript
import ReactDOM from 'react-dom/client'
|
|
import { App } from './app/providers'
|
|
import './i18n/config'
|
|
import './index.css'
|
|
|
|
/**
|
|
* Main React entry point.
|
|
*
|
|
* Runtime configuration is loaded earlier in `bootstrap.ts`; this file only mounts the configured
|
|
* application tree.
|
|
*/
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<App />,
|
|
)
|