Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Reactの歴史

Matsuo Obu
December 07, 2019

 Reactの歴史

Reactの歴史。WeJS Festival !@サイボウズ (2019-12-07) で発表。
詳細な解説:https://qiita.com/mqtsuo02/items/4bace06c85f5f1872db6

Matsuo Obu

December 07, 2019
Tweet

More Decks by Matsuo Obu

Other Decks in Technology

Transcript

  1. FaxJSによるコンポーネント宣言 TestProject.PersonDisplayer = { structure : function() { return Div({

    classSet: { personDisplayerContainer: true}, titleDiv: Div({ classSet: { personNameTitle: true }, content: this.props.name }) }); } };
  2. React発表時のコンポーネント宣言 var ActionButton = React.createClass({ render: function() { return (

    <button class="ActionButton" onClick={this.props.onAction}> <span>{this.props.text}</span> </button> ); } }) <ActionButton text="Book flight" onAction={someFunc} />
  3. References Pete Hunt | TXJS 2015 https://www.youtube.com/watch?v=A0Kj49z6WdM The History of

    React.js on a Timeline https://blog.risingstack.com/the-history-of-react-js-on-a-timeline/