0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

React学習メモ

Posted at

#基礎知識

見た目を作るコードは、HTMLとほとんど同じ。
名前を JSX と呼ぶ

##JSXの書き方
###HTMLとの違い

  1. コードの構造に制限がある
    1. return内に複数の要素があるとエラーになる。
    2. 一つの要素の中にまとめる(入れ子構造にする必要がある)
  2. コメントアウト方法はHTMLでは「」だが、JSXでは「{/* */}」を使用する
    1. 多分、ショートカットキーがあるので後で追記する
  3. imgタグに閉じタグが必要

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?