0
0

More than 1 year has passed since last update.

memo

Last updated at Posted at 2023-03-22

gatsby
merukari web
edge computing

不要なタグを出力しないフラグメント

  <React.Fragment>
    <div>

または

import { Fragment } from "react"

  <Fragment>
    <div>

JSXとは

reactによるjavascriptの構文を拡張したもの
JSXはJSのオブジェクトに変換される

<h1>hello world</h1>


babelにより変換

javascript オブジェクトに※react要素とも呼ばれる

0
0
1

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