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のディレクトリ構成

Posted at

小規模プロジェクト向け

src/
│── components/      # 再利用可能なUIコンポーネント(ボタン、フォームなど)
│── pages/           # ルーティングごとのページコンポーネント(Home.tsx,About.tsxなど)
│── hooks/           # カスタムフック(useAuth.ts,useFetch.tsなど)
│── utils/           # ユーティリティ関数(日付フォーマット、APIリクエスト処理)
│── assets/          # 画像・スタイル・フォント(画像やCSSファイルをまとめる)
│── App.tsx
│── main.tsx         # エントリーポイント
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?