mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
24 lines
722 B
TypeScript
24 lines
722 B
TypeScript
import "@blueprintjs/core/lib/css/blueprint.css";
|
|
import "@blueprintjs/icons/lib/css/blueprint-icons.css";
|
|
import "normalize.css/normalize.css";
|
|
import "~App.scss";
|
|
|
|
import * as React from "react";
|
|
import { render } from "react-dom";
|
|
import { Provider } from "react-redux";
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import { PersistGate } from "redux-persist/integration/react";
|
|
import { App } from "~App";
|
|
import { persistor, store } from "~redux/store";
|
|
|
|
render(
|
|
<Provider store={store}>
|
|
<PersistGate loading={null} persistor={persistor}>
|
|
<BrowserRouter>
|
|
<App />
|
|
</BrowserRouter>
|
|
</PersistGate>
|
|
</Provider>,
|
|
document.getElementById("body"),
|
|
);
|