First commit
This commit is contained in:
15
src/client/index.tsx
Normal file
15
src/client/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as React from "react";
|
||||
import { render } from "react-dom";
|
||||
import { Provider } from "react-redux";
|
||||
import configureStore from "./store/index";
|
||||
import App from "./components/App";
|
||||
|
||||
const store = configureStore({});
|
||||
const rootEl = document.getElementById("root");
|
||||
|
||||
render(
|
||||
<Provider store={store}>
|
||||
<App history={history} />
|
||||
</Provider>,
|
||||
rootEl,
|
||||
);
|
||||
Reference in New Issue
Block a user