import { Component } from 'react'; import SimpleStorage from 'Embark/contracts/SimpleStorage'; window.SimpleStorage = SimpleStorage; class App extends Component { action() { console.log("calling...") SimpleStorage.methods.get().call(function(err, value) { alert(value); }) } render() { return (
To get started, edit src/App.js
and save to reload.