dapp.js
1 import App from './components/App'; 2 import EmbarkJS from 'Embark/EmbarkJS'; 3 import React from 'react'; 4 import DReddit from 'Embark/contracts/DReddit'; 5 import {render} from 'react-dom'; 6 7 window.EmbarkJS = EmbarkJS; 8 window.DReddit = DReddit; 9 10 render(<App />, document.getElementById('root'));