2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

propsとは

Last updated at Posted at 2024-09-14

propsについて

Reactのpropsとはコンポーネント間でデータを受け渡すための重要な機能。
様々な型のデータや関数を Props として渡せます。
書き方が複数ケースあり、プロジェクトによって異なる可能性があるため下記に記載

書き方例

例1

export const propsExample = (props) => {
  const example = {
    age: props.age,
    name: props.name,
  };

 return <p>{props.age}{props.name}</p>;
};

例2

export const propsExample = (props) => {
  const { age, name } = props;
  const example = {
    age,
    name,
  };

  return <p>{age}{name}</p>;
};

例3

  export const propsExample = ({ age, name }) => {
  const example = {
    age,
    name,
  };

  return <p>{age}{name}</p>;
};

##所感
便利な機能である反面さまざまな書き方があり、しっかり把握をしておかなくては実際の案件やプロジェクトに入る際混乱する恐れがあるため、しっかりこちらをメモとして残しておいていつでも確認出来るようにする必要があると感じた。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?