-
Notifications
You must be signed in to change notification settings - Fork 57
[AIBE6/4팀/송민혁]TODO APP 만들기 완료 #63
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
Open
m1nhy2uk
wants to merge
6
commits into
sik2:main
Choose a base branch
from
m1nhy2uk:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b3bed6a
[AIBE6/4팀/송민혁]TODO APP 만들기 완료
m1nhy2uk 2804c99
Remove empty line in project structure section
m1nhy2uk 9b55148
Add project structure section to README
m1nhy2uk 4d7c1d1
Update README.md
m1nhy2uk 965d630
Update README.md
m1nhy2uk 84b0939
Update README.md
m1nhy2uk 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 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,24 @@ | ||
| # Logs | ||
| logs | ||
| *.log | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
| lerna-debug.log* | ||
|
|
||
| node_modules | ||
| dist | ||
| dist-ssr | ||
| *.local | ||
|
|
||
| # Editor directories and files | ||
| .vscode/* | ||
| !.vscode/extensions.json | ||
| .idea | ||
| .DS_Store | ||
| *.suo | ||
| *.ntvs* | ||
| *.njsproj | ||
| *.sln | ||
| *.sw? |
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,7 @@ | ||
| { | ||
| "printWidth": 120, | ||
| "tabWidth": 4, | ||
| "singleQuote": true, | ||
| "trailingComma": "all", | ||
| "semi": false | ||
| } |
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 |
|---|---|---|
| @@ -1 +1,48 @@ | ||
| # 리액트 투두 앱 만들기 미션 레포 | ||
|
|
||
| ## 사용 영상 | ||
|
|
||
|
|
||
| https://github.com/user-attachments/assets/7a0b1191-8b83-4be0-a9d0-aef01accaaae | ||
|
|
||
|
|
||
|
|
||
| ## 목적 | ||
|
|
||
| 1. React 컴포넌트 구조 이해 | ||
| 2. 투두 앱 기능 구현 | ||
| 3. localStorage를 활용한 데이터 저장 및 유지 기능 구현 | ||
|
|
||
| ## 기술 스택 | ||
|
|
||
| React | ||
| Vite | ||
| TailWindCss | ||
| JavaScript | ||
|
|
||
| ## 기능 | ||
|
|
||
| - 할 일 추가 | ||
| - 할 일 삭제 | ||
| - 할 일 완료 체크 | ||
| - 할 일 세부사항 기록 및 저장 | ||
| - localStorage 저장 | ||
|
|
||
| ## 프로젝트 구조 | ||
|
|
||
| src/ | ||
| ├── components/ | ||
| │ ├── TodoForm.jsx # 할 일 입력 폼 | ||
| │ ├── TodoItem.jsx # 개별 할 일 항목 | ||
| │ └── TodoList.jsx # 할 일 목록 렌더링 | ||
| ├── context/ | ||
| │ └── TodoContext.jsx # Context API 전역 상태 제공 | ||
| ├── hooks/ | ||
| │ └── useTodos.js # 할 일 CRUD 로직 Custom Hook | ||
| ├── pages/ | ||
| │ ├── Main.jsx # 메인 페이지 | ||
| │ └── Todo.jsx # TODO 관리 페이지 | ||
| ├── utils/ | ||
| │ └── storage.js # 로컬 스토리지 처리 | ||
| ├── App.jsx # 라우팅 설정 | ||
| └── main.jsx # 앱 진입점 | ||
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,29 @@ | ||
| import js from '@eslint/js' | ||
| import globals from 'globals' | ||
| import reactHooks from 'eslint-plugin-react-hooks' | ||
| import reactRefresh from 'eslint-plugin-react-refresh' | ||
| import { defineConfig, globalIgnores } from 'eslint/config' | ||
|
|
||
| export default defineConfig([ | ||
| globalIgnores(['dist']), | ||
| { | ||
| files: ['**/*.{js,jsx}'], | ||
| extends: [ | ||
| js.configs.recommended, | ||
| reactHooks.configs.flat.recommended, | ||
| reactRefresh.configs.vite, | ||
| ], | ||
| languageOptions: { | ||
| ecmaVersion: 2020, | ||
| globals: globals.browser, | ||
| parserOptions: { | ||
| ecmaVersion: 'latest', | ||
| ecmaFeatures: { jsx: true }, | ||
| sourceType: 'module', | ||
| }, | ||
| }, | ||
| rules: { | ||
| 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], | ||
| }, | ||
| }, | ||
| ]) |
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,13 @@ | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>datodo</title> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.jsx"></script> | ||
| </body> | ||
| </html> |
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.