2
0
mirror of synced 2025-02-24 12:58:25 +00:00
emizzle acc200fb52 reduced webpacked file size
moved getting of user details to highest level and sending data to lower level comps

add babel file
2018-07-03 16:31:10 +10:00

15 lines
389 B
JavaScript

import { render } from 'react-dom'
import { BrowserRouter } from 'react-router-dom'
import App from './components/App';
import React from 'react';
import EmbarkJS from 'Embark/EmbarkJS';
import DTwitter from 'Embark/contracts/DTwitter';
window.EmbarkJS = EmbarkJS;
window.DTwitter = DTwitter;
render((
<BrowserRouter>
<App />
</BrowserRouter>
), document.getElementById('root'));