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

はじめてのReact + Decoupled Drupal

7tsuno
October 05, 2018

はじめてのReact + Decoupled Drupal

Decoupled Drupalとはどういったものかという簡単な説明と、
実際に最小の構成でReactを使ってフロントエンド : React コンテンツ : Drupalでコンテンツの内容を表示させてみようと思います。

7tsuno

October 05, 2018
Tweet

More Decks by 7tsuno

Other Decks in Technology

Transcript

  1. click(){ this.setState({ clicked : ‘clicked !’ }); } render(){ return

    ( <div> <input type=‘button’ onClick={() => this.click()}> {this.state.clicked} </div> ) }