Skip to content
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

[김유정] Sprint7 #623

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b2e37bd
reset
hanseulhee Oct 10, 2023
6f8bbb0
Merge branch 'codeit-bootcamp-frontend:main' into main
hanseulhee Oct 10, 2023
e11e25f
fix: 머지 후 브랜치 삭제 github action 수정
hanseulhee Oct 10, 2023
212e864
env: workflows 폴더로 이동
hanseulhee Oct 10, 2023
4dc5dd0
Merge pull request #237 from hanseulhee/fix-github-actions
withyj-codeit Nov 6, 2023
9b30176
test.txt 추가
Kimyu94 Mar 19, 2024
1fae955
Add sprint mission1 in part1
Kimyu94 Mar 19, 2024
2f9aacb
color값 css 변수로 변경
Kimyu94 Mar 19, 2024
4b6d4c8
color값 class명 변경
Kimyu94 Mar 19, 2024
43d437f
폴더 삭제 후 html 파일 생성
Kimyu94 Mar 21, 2024
2e8b42f
css변경
Kimyu94 Mar 21, 2024
c1e6cc0
Merge pull request #71 from Kimyu94/part1-김유정-sprint1
jyh0521 Mar 22, 2024
21c603f
코드리뷰 개선사항 반영
Kimyu94 Mar 22, 2024
e0aae38
Merge branch 'part1-김유정' of https://github.com/Kimyu94/6-Sprint-Missi…
Kimyu94 Mar 22, 2024
5e7b708
스프린트2 미션 업로드
Kimyu94 Mar 22, 2024
09d4ec0
css파일 들여쓰기 수정
Kimyu94 Mar 22, 2024
9df59f4
스크린샷 이미지 업로드
Kimyu94 Mar 22, 2024
9ea4b81
input태그 name 속성 변경
Kimyu94 Mar 22, 2024
1067c84
Merge pull request #128 from Kimyu94/part1-김유정-sprint2
jyh0521 Mar 26, 2024
5c0b9a8
스프린트3 미션 업로드
Kimyu94 Mar 29, 2024
bd005b6
Merge pull request #210 from Kimyu94/part1-김유정-sprint3
jyh0521 Apr 1, 2024
92e1254
Merge branch 'React-김유정' of https://github.com/codeit-bootcamp-fronte…
Kimyu94 Apr 18, 2024
592f328
sprint6 upload
Kimyu94 Apr 26, 2024
f76174e
스타일 컴포넌트 수정
Kimyu94 Apr 26, 2024
1836abf
fileinput 수정
Kimyu94 May 31, 2024
a91d3c8
스프린트 5,6 리팩토링
Kimyu94 Jun 7, 2024
af60dc4
상품 리스트 출력
Kimyu94 Jun 9, 2024
ab79aaa
공통 컴포넌트 생성
Kimyu94 Jun 12, 2024
b114b7d
Merge branch 'part1-김유정' of https://github.com/Kimyu94/6-Sprint-Missi…
Kimyu94 Jun 17, 2024
2ef15a8
Merge branch 'React-김유정' into React-김유정-sprint7
Kimyu94 Jun 17, 2024
0147865
충돌 해결
Kimyu94 Jun 17, 2024
fae4560
충돌 해결
Kimyu94 Jun 17, 2024
dafa16c
충돌 수정
Kimyu94 Jun 17, 2024
98acada
충돌 수정
Kimyu94 Jun 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eslint를 설정하셨군요 👍 👍

root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'no-unused-vars': 'off', //사용하지 않는 변수 오류 옵션
'react/prop-types': 'off',
},
};
41 changes: 21 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# 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?
72 changes: 5 additions & 67 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,70 +1,8 @@
# Getting Started with Create React App
# React + Vite

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

## Available Scripts
Currently, two official plugins are available:

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

The page will reload when you make changes.\
You may also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
70 changes: 0 additions & 70 deletions css/reset.css

This file was deleted.

Loading
Loading