React - salmanbaig8/imp GitHub Wiki
https://reactjs.org/ Had issues with the Codepen demo? Here's the finished source code: https://codepen.io/anon/pen/MELQaQ React Dom: Renders the view to the actual DOM babel: its a tool that compiles next gen js code that you write to the code that runs on the browser ReactDOM.render() Render a a js func as a component to the real DOM and treated component part taken care by react.
Refreshing Next gen JS let & const: let(new var): variable values const: constant values
Arrow Funcn ex: const func = () =>{ } Diff ways: const func = name => console.log(name) const func = (name, age) =>{ console.log(name, age); }
func('sal', 30); Normal fucn ex: function func(){ }
Exports & Imports: