Commit bf750ce4 authored by LianaHus's avatar LianaHus

initial react setup

parent 39e0d809
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="app"></div>
<script src="build/app.js"></script>
</body>
</html>
{
"name": "remix",
"version": "0.0.1",
"description": "Ethereum IDE and tools for the web",
"main": "index.js",
"dependencies": {
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix.git"
},
"author": "cpp-ethereum team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix/issues"
},
"homepage": "https://github.com/ethereum/remix#readme"
}
var React = require('react');
module.exports = React.createClass({
render: function() {
return <p>Sample other Text</p>;
}
});
var ReactDOM = require('react-dom');
var React = require('react');
var Debugger = require('./debugger');
ReactDOM.render(
<Debugger/>,
document.getElementById('app')
);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment