mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
24 lines
418 B
TypeScript
24 lines
418 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App";
|
|
import {HashRouter} from "react-router-dom";
|
|
|
|
import 'antd/dist/reset.css';
|
|
import './i18n'
|
|
|
|
import './index.css'
|
|
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement)
|
|
|
|
function Index() {
|
|
|
|
return (
|
|
<HashRouter>
|
|
<App/>
|
|
</HashRouter>
|
|
);
|
|
}
|
|
|
|
root.render(<Index/>)
|