-
Notifications
You must be signed in to change notification settings - Fork 0
使用していないフォルダ/ファイルの整理 #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
bbb1674
refactor: `App.tsx` のコメントアウトを削除
nkoji21 8c25496
refactor: `index.tsx` を削除
nkoji21 b813269
refactor: `index.tsx` を削除
nkoji21 d8986b8
refactor: `HomeScreen.tsx` のパスを調整
nkoji21 8898f76
refactor: `ModeScreen.tsx` のパスを修正
nkoji21 4e7a526
refactor: `PhotoScreen.tsx` の importパスを調整
nkoji21 98d77b7
refactor: `ResultScreen.tsx` のパスを調整
nkoji21 b426364
refactor: `camera/`types.ts` に書かれてある、型定義を `types/` ディレクトリに移動
nkoji21 5ff4f20
refactor: `camera.tsx` に `CameraProps` インターフェースを追加し、型定義を `types/` ディレ…
nkoji21 dd5070f
refactor: `camera/` の 型定義ファイルが他で使用されていないため削除
nkoji21 c1eca4f
refactor: `PhotoScreen.tsx` の型定義のインポートパスを `types/` ディレクトリに変更
nkoji21 d64a01e
refactor: 現状使用していない、`game/` ディレクトリの削除
nkoji21 5ce5c8e
refactor: `wrangler.jsonc` から未使用の環境変数を削除
nkoji21 d9aeccb
refactor: ルーティングを `AppRoutes.tsx` に移行し、`App.tsx` を簡素化
nkoji21 1204e1c
chore: formatを適用
nkoji21 b5eb18e
refactor: global css を `src/styles` に整理
nkoji21 a684b79
refactor: import修正
nkoji21 ddb455a
refactor: 使用されていないCSSスタイルを削除
nkoji21 653b2fd
refactor: 使用されていないピクセルアート風のCSSスタイルを削除
nkoji21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| import { createBrowserRouter, RouterProvider } from 'react-router-dom'; | ||
|
|
||
| import { HomeScreen } from '@/web/components/home/HomeScreen'; | ||
| import { ModeScreen } from '@/web/components/mode/ModeScreen'; | ||
| import { PhotoPreview } from '@/web/components/photo/PhotoPreview'; | ||
| import { PhotoScreen } from '@/web/components/photo/PhotoScreen'; | ||
| import { ResultScreen } from '@/web/components/result/ResultScreen'; | ||
|
|
||
| const router = createBrowserRouter([ | ||
| { | ||
| path: '/', | ||
| element: <HomeScreen />, | ||
| }, | ||
| { | ||
| path: '/mode', | ||
| element: <ModeScreen />, | ||
| }, | ||
| { | ||
| path: '/photo', | ||
| element: <PhotoScreen />, | ||
| }, | ||
| { | ||
| path: '/photo/preview', | ||
| element: <PhotoPreview />, | ||
| }, | ||
| { | ||
| path: '/result', | ||
| element: <ResultScreen />, | ||
| }, | ||
| ]); | ||
|
|
||
| export const AppRoutes = () => { | ||
| return <RouterProvider router={router} />; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.