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.

29 lines
783 B

import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
6 years ago
import { ConnectedRouter } from 'connected-react-router'
import { Drizzle } from 'drizzle';
6 years ago
import store, {history} from './redux/store';
6 years ago
import routes from './router/routes'
import { initIPFS } from './orbit'
import * as serviceWorker from './utils/serviceWorker';
import './assets/css/index.css';
import drizzleOptions from "./config/drizzleOptions";
6 years ago
6 years ago
initIPFS();
6 years ago
export const drizzle = new Drizzle(drizzleOptions, store);
6 years ago
render(
<Provider store={store}>
<ConnectedRouter history={history}>
{ routes }
</ConnectedRouter>
</Provider>,
6 years ago
document.getElementById('root')
);
serviceWorker.unregister(); // See also: http://bit.ly/CRA-PWA