import React from 'react'; import ReactDOM from 'react-dom'; import { Tabs, Tab } from 'react-bootstrap'; import EmbarkJS from 'Embark/EmbarkJS'; import Blockchain from './components/blockchain'; import Whisper from './components/whisper'; import './dapp.css'; class App extends React.Component { constructor(props) { super(props); this.state = { whisperEnabled: false } } componentDidMount(){ // TODO Verify if whisper & swarm are available this.setState({ whisperEnabled: false }); } _renderStatus(title, available){ let className = available ? 'pull-right status-online' : 'pull-right status-offline'; return {title} ; } render(){ return (

Embark - Usage Example

Tab 2 content
); } } ReactDOM.render(, document.getElementById('app'));