22 lines
410 B
TypeScript
Raw Permalink Normal View History

2024-12-30 23:50:15 +01:00
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import {HashRouter} from 'react-router-dom'
2024-07-23 18:37:59 +02:00
2024-12-30 23:50:15 +01:00
import 'antd/dist/reset.css'
2024-07-28 15:36:22 +02:00
import './i18n'
2024-07-22 14:45:21 +02:00
2024-07-31 02:10:55 +02:00
import './index.css'
2024-12-30 23:50:15 +01:00
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
2024-07-23 18:37:59 +02:00
function Index() {
return (
<HashRouter>
<App/>
</HashRouter>
2024-12-30 23:50:15 +01:00
)
2024-07-23 18:37:59 +02:00
}
root.render(<Index/>)