. ├── README.md ├── dist [出力ディレクトリ] │ ├── index.html │ └── js │ ├── bundle.js │ └── bundle.js.map ├── front │ ├── public │ │ └── index.html [トップページ定義] │ ├── src │ │ ├── App.tsx [Application初期設定] │ │ ├── GitHub │ │ │ ├── FirebaseGitAuthModule.ts [FirebaseGit認証用モジュール] │ │ │ ├── GitHubModule.ts [Githubアクセス用モジュール] │ │ │ └── GraphQLgetRepositories.ts [GraphQLクエリ] │ │ ├── Parts [サブパーツコンポーネント] │ │ │ ├──

