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?

React.FCとは?

Last updated at Posted at 2025-02-24

React.FC を使うパターン

コンポーネントが受け取るpropsとReact.FCを使ってコンポーネントの型を定義する。

import React from 'react'

type Props = {
  name: string;
};

const Component: React.FC<Props> = ({ name }) => {
  return <h1>Hello {name}</h1>;
};

export default Hoge

React.FC を使わない書き方

関数の引数と戻り値の型を個別にしていした関数としてコンポーネントを定義する。

type Props = {
  name: string;
};

const Component = ({ name }: Props): React.JSX.Element => {
  return <h1>Hello {name}</h1>;
};

export default Hoge

最近では、React.FC の使用を避けることが推奨されている。
・ジェネリクス(型パラメーター)が使えないから。
・children を含めたい場合は明示的に定義した方が良い。
・関数の戻り値が JSX.Element だと明示的にできる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?