React
React學習手冊-Github
react-signup-form
https://github.com/mikepro4/react-signup-form Demo http://codepen.io/mikepro4/full/pvKYZG/
npm install
npm start
– will create/build
directory- Go to
/build
directory and typepython -m SimpleHTTPServer
- Go to
localhost:8000
// This gets linted
var answer = 6 * 7;
console.log(answer);
// This also gets linted
/* eslint quotes: [2, "double"] */
function hello() {
console.log("Hello, world!");
}
hello();
// This gets linted too
var div = <div className="jsx"></div>;
// And this
console.log(process.version);
This is plain text and doesn't get linted.