React.js– category –
-
React.js
【React】babelでbabel-preset-stage-0や使う方法「ES7 Property Initialiazers for Default Props and Prop 」を使いたい方へ
【React】babelでbabel-preset-stage-0や使う方法「ES7 Property Initialiazers for Default Props and Prop 」を使いたい方へ 英語文しかなかったので自分のようなReactにおいて「ES7 Property Initialiazers for Default Props and Prop」を使いたい方へ... -
React.js
【React × ES6 × Flux】を手っ取り早く学びたい人の為にサンプル作ったよ【3の倍数と3が付くときだけ猫になるCounter】
【React × ES6 × Flux】を手っ取り早く学びたい人の為にサンプル作った【3の倍数と3が付くときだけ猫になるCounter】 Cat comes out when that contains the multiples of 3 and the string to 3 なかなかミニマムでこれらを学べるプロジェクトがみつから... -
React.js
【React × Flux × ES6】LINE風チャット
【React × Flux × ES6】LINE風チャット 話は表題と違うのですが、 小さい頃よく母親の作る料理がどこか一箇所凝ったものが混ざってて、 普通の味噌汁でいいのにしめじ入ってたり、 普通の魚でいいのに苦手な野菜をあんかけにして乗っけてきたり、 普通の白... -
React.js
【React】with ES6
React with ES6 getting start https://jsbin.com/fuyedekaga/1/edit?html,js,console,output Reactrepogtory html javascript [javascript] class HelloMessage extends React.Component { constructor(props){ super(props); } render(){ return (<di... -
React.js
【React】CreateComponent with Babel,ES6
https://jsbin.com/goweminevo/7/edit?html,js,output [js] var HelloWorldComponent = React.createClass({ render() { return ( <h1>Hello {this.props.name}</h1> ); } }); React.render( <HelloWorldComponent name="kenjimorita&... -
React.js
Functional Reactive Programing
https://qiita.com/M-ISO https://github.com/kenmori /** @jsx React.DOM */ var ProductCategoryRow = React.createClass({ render: function() { return ({this.props.category}); } }); var ProductRow = React.createClass({ render: function() { va...
