0
1

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 1 year has passed since last update.

お母さんでもわかるReact「_app.js」

Posted at

_app.js(アンストアップ)について

Next.jsにおいてとても大切な役割を持っており、できることも多い。

・全てのページに反映されるため、共通部分を記述する
・すべてのページで使用されるグローバルデータの取得(ログインユーザーの情報や、共通のコンテンツ)。
・サーバーサイドレンダリングの設定
・エラーハンドリング

ファイルの詳細

_appは一番最初に呼び出される。

export default function App({ Component, pageProps }) {
  return (
    <>
      <Component {...pageProps} />
    </>
  );
}

Componentには、レンダリングされるページの関数コンポーネントが渡ってきます。
→つまり現在のページに対応するコンポーネントが渡されます。

pagePropsには、Conmponet に渡された関数コンポーネントが受け取る props が格納されたオブジェクトが渡ってきます。
→つまり現在のページに対応するコンポーネントに渡されるべきpropsが格納されている。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?