The main server, and probably only repository in this org.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
325 B

5 years ago
  1. import React from "react";
  2. import ReactDOM from "react-dom";
  3. import App from "./App";
  4. import "bootstrap/dist/css/bootstrap.min.css";
  5. import {Provider} from "react-redux";
  6. import store from "./Reducers";
  7. ReactDOM.render(
  8. (
  9. <Provider store={store}>
  10. <App/>
  11. </Provider>
  12. ),
  13. document.getElementById("root"));