2017-02-20 16:40:01 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-04-24 09:53:27 +02:00
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import React from 'react';
|
2017-04-24 15:37:53 +02:00
|
|
|
import { Route, Router, hashHistory } from 'react-router';
|
2017-04-24 09:53:27 +02:00
|
|
|
|
|
|
|
import injectTapEventPlugin from 'react-tap-event-plugin';
|
|
|
|
injectTapEventPlugin();
|
|
|
|
|
2017-05-09 12:01:44 +02:00
|
|
|
import ContractInstances from '@parity/shared/contracts';
|
|
|
|
import { initStore } from '@parity/shared/redux';
|
2017-05-12 12:06:16 +02:00
|
|
|
import ContextProvider from '@parity/ui/ContextProvider';
|
2017-05-09 12:01:44 +02:00
|
|
|
|
2017-06-08 17:14:02 +02:00
|
|
|
import api from './api';
|
2017-04-24 09:53:27 +02:00
|
|
|
|
|
|
|
import Vaults from './vaults';
|
|
|
|
|
|
|
|
ContractInstances.get(api);
|
|
|
|
|
|
|
|
const store = initStore(api, hashHistory);
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2017-05-16 14:46:48 +02:00
|
|
|
<ContextProvider api={ api } store={ store }>
|
2017-04-24 15:37:53 +02:00
|
|
|
<Router history={ hashHistory }>
|
|
|
|
<Route path='/' component={ Vaults } />
|
|
|
|
</Router>
|
2017-04-24 09:53:27 +02:00
|
|
|
</ContextProvider>,
|
|
|
|
document.querySelector('#container')
|
|
|
|
);
|