mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 21:46:19 +00:00
14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
import { Provider } from "react-redux";
|
|
import store from "./stores";
|
|
import App from "./App";
|
|
import "./css/index.css";
|
|
|
|
const container = document.getElementById("root");
|
|
const root = createRoot(container as HTMLElement);
|
|
root.render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
);
|