This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/frontend/src/index.tsx
Alexander Polynomdivision 909149fdc7 refactor: MONOREPO
2018-09-20 17:38:12 +02:00

18 lines
414 B
TypeScript

import * as React from "react";
import * as ReactDOM from "react-dom";
import { createStore } from "redux";
import { Provider } from "react-redux";
import { LateinicusApp } from "./reducers";
import Application from "./containers/Application";
const store = createStore(LateinicusApp);
ReactDOM.render((
<Provider store={store}>
<Application />
</Provider>
), document.getElementById("app"));