Skip to content

Instantly share code, notes, and snippets.

@dearfrankg
Created March 24, 2017 09:51
Show Gist options
  • Select an option

  • Save dearfrankg/26ac1dddd34a79cdae15dc57209067ab to your computer and use it in GitHub Desktop.

Select an option

Save dearfrankg/26ac1dddd34a79cdae15dc57209067ab to your computer and use it in GitHub Desktop.
esnextbin sketch
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ESNextbin Sketch</title>
<!-- put additional styles and scripts here -->
</head>
<body>
<!-- put markup and other contents here -->
</body>
</html>
// write ES2015 code and import modules from npm
// and then press "Execute" to run your program
import React from 'react'
import { render } from 'react-dom'
import { observable } from 'mobx'
{
"name": "esnextbin-sketch",
"version": "0.0.0",
"dependencies": {
"mobx": "3.1.7",
"react": "15.4.2",
"react-dom": "15.4.2"
}
}
'use strict';
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _reactDom = require('react-dom');
var _mobx = require('mobx');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment