LoginSignup
0
0

More than 3 years have passed since last update.

Reactの重要キーワード

Posted at

Reactの重要キーワード

state

・ユーザーの動きに合わせて変わる値。
・stateの値を更新するときはsetState()を使う。

コンポーネント

・Reactでは、見た目を機能ごとにコンポーネント化して、コンポーネントを組み合わせることでWebサイトの見た目を作る。
・
コンポーネントとは要はUIの部品。

props

コンポーネントに渡すデータ

jsx

・見た目を作る部分。htmlのように書ける。
・一つの要素の中に書く。
・jsx内でコメントは以下のように書く

 {/* コメント */}

・{}内はjs

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0