React

React 文法

 

renderメソッド

文法)
render(comp, target)
・comp:出力するコンポーネント
・target:出力先の要素

例)
ReactDOM.render(<App />, document.getElementById(‘root’));
id=”root”にAppコンポーネントを出力する

 

 

関連記事

  1. React

    Reactの使用方法

    Reactを使用する方法は3つある。①CDNからの取得やり方)…

  2. React

    ReactのDOM属性の予約語 class, forと注意が必要なstyle

    概要ReactのDOM属性では、class, forが予約語なので…

  1. React

    ReactのDOM属性の予約語 class, forと注意が必要なstyle
  2. React

    Reactの使用方法
  3. イベント

    create-react-appのファイル構造と役割
  4. React

    React 文法
  5. イベント

    htmlのlabelタグ for属性について
PAGE TOP