mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-25 05:51:50 +01:00
18 lines
415 B
TypeScript
18 lines
415 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import { HashRouter } from "react-router-dom";
|
|
import "./index.css";
|
|
import { ErrorBoundary } from "components/layout/ErrorBoundary";
|
|
import App from "./App";
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<ErrorBoundary>
|
|
<HashRouter>
|
|
<App />
|
|
</HashRouter>
|
|
</ErrorBoundary>
|
|
</React.StrictMode>,
|
|
document.getElementById("root")
|
|
);
|