Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 18 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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?

.env
Copy link
Member

Choose a reason for hiding this comment

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

Posix 명세 준수를 위해, 파일은 항상 줄바꿈 문자로 끝내주세요!

11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}
56 changes: 37 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,45 @@
# ✔️ 미니 프로젝트_연차/당직 프로그램 만들기
# FExBE 미니 프로젝트 8조 [FE 부문]

## 필수 요구 사항
## 오늘은 내차례

- 로그인 / 회원가입 페이지
- 개인 정보 수정 페이지
- 사용자간 공유 게시 페이지 캘린더 사용
<div align="center">

## 선택 요구 사항
![logo](https://github.com/MINI-TEAM8-FC/FE_my_turn/blob/dev/src/assets/logo_2.png?raw=true)

- `useCallback`, `useMemo `등을 통한 컴포넌트 렌더링 최적화
- 내가 작성한 코드를 팀원 중 누가봐도 쉽게 알아볼 수 있도록 고민하면서 작성해주세요.
배포 주소:

## 과제 수행 및 제출 방법
</div>

1. 현재 저장소를 로컬에 클론(Clone)합니다.
2. 팀별로 브랜치를 생성합니다.(`git branch KDT5_TEAM_ABC`)
3. 팀별 브랜치에서 과제를 수행합니다.
4. 과제 수행이 완료되면, 자신의 본명 브랜치를 원격 저장소에 푸시(Push)합니다.(`main` 브랜치에 푸시하지 않도록 꼭 주의하세요, `git push origin KDT5_TEAM_ABC`)
5. 저장소에서 `main` 브랜치를 대상으로 Pull Request 생성하면, 과제 제출이 완료됩니다!(E.g, `main` <== `KDT5_TEAM_ABC`)
## 팀원 소개 👤

### 주의사항!
| 팀원 | 문대현 | 이은지 | 정재현 | 차동민 |
| ------ | ---------------------------------------- | ------------------------------------------ | -------------------------------------- | ------------------------------------------ |
| 깃허브 | [@dhmoon11](https://github.com/dhmoon11) | [@dmswl2030](https://github.com/dmswl2030) | [@iskra17](https://github.com/iskra17) | [@cdm1263](https://github.com/cdm1263) |
| 담당 | - 관리자 페이지<br /> - 승인, 반려 | - 캘린더 <br /> - | - 사용자 인증<br /> - Nav 바 | - 신청 모달 <br /> - 승인 현황 모달 <br /> |

- `main` 혹은 다른 사람의 브랜치로 절대 병합하지 않도록 주의하세요!
- Pull Request에서 보이는 설명을 다른 사람들이 이해하기 쉽도록 꼼꼼하게 작성하세요!
- Pull Request에서 과제 제출 후 절대 병합(Merge)하지 않도록 주의하세요!
- 과제 수행 및 제출 과정에서 문제가 발생한 경우, 바로 담당 멘토나 강사에서 얘기하세요!
| **[문대현](https://github.com/dhmoon11)** | **[이은지](https://github.com/dmswl2030)** | **[정재현](https://github.com/iskra17)** | **[차동민](https://github.com/cdm1263)** |
| :--------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: |
| <a href="https://github.com/dhmoon11"><img src="https://avatars.githubusercontent.com/u/128357255?v=4" width=150px alt="문대현" /> | <a href="https://github.com/dmswl2030"><img src="https://avatars.githubusercontent.com/u/51252978?v=4" width=150px alt="이은지" /> | <a href="https://github.com/iskra17"><img src="https://avatars.githubusercontent.com/u/128365197?v=4" width=150px alt="정재현" /> | <a href="https://github.com/cdm1263"><img src="https://avatars.githubusercontent.com/u/122417731?v=4" width=150px alt="차동민" /> |
| - 관리자 페이지<br /> - 승인, 반려 | - 캘린더 <br /> - | - 사용자 인증<br /> - Nav 바 | - 신청 모달 <br /> - 승인 현황 모달 <br /> |

### 사용 기술 및 개발환경

[![React](https://img.shields.io/badge/-React-61DAFB?logo=react&logoColor=white)](https://reactjs.org/)
[![TypeScript](https://img.shields.io/badge/-TypeScript-007ACC?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
[![Vite](https://img.shields.io/badge/-Vite-646CFF?logo=vite&logoColor=white)](https://vitejs.dev/)
[![Netlify](https://img.shields.io/badge/-Netlify-00C7B7?logo=netlify&logoColor=white)](https://www.netlify.com/)

[![Zustand](https://img.shields.io/badge/-Zustand-FF9E0F?logo=zustand&logoColor=white)](https://github.com/pmndrs/zustand)
[![React Query](https://img.shields.io/badge/-React%20Query-FF4154?logo=react-query&logoColor=white)](https://react-query.tanstack.com/)
[![react-hook-form](https://img.shields.io/badge/-react--hook--form-61DAFB?logo=react&logoColor=white)](https://react-hook-form.com/)

[![Styled Components](https://img.shields.io/badge/-Styled%20Components-DB7093?logo=styled-components&logoColor=white)](https://styled-components.com/)
[![react-toastify](https://img.shields.io/badge/-react--toastify-61DAFB?logo=react&logoColor=white)](https://fkhadra.github.io/react-toastify/)
[![antd](https://img.shields.io/badge/-Ant%20Design-0170FE?logo=ant-design&logoColor=white)](https://ant.design/)
[![react-icons](https://img.shields.io/badge/-react--icons-61DAFB?logo=react&logoColor=white)](https://react-icons.github.io/react-icons/)

[![Figma](https://img.shields.io/badge/-Figma-F24E1E?logo=figma&logoColor=white)](https://www.figma.com/)
[![gitmoji-cli](https://img.shields.io/badge/-gitmoji--cli-F1502F?logo=git&logoColor=white)](https://github.com/carloscuesta/gitmoji-cli)
<img src="https://img.shields.io/badge/Slack-4A154B?style=flat&logo=Slack&logoColor=white" />

</p>
13 changes: 13 additions & 0 deletions index.html
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="/person_hand_up.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>오늘은 내 차례!?</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[[redirects]]
from = "/*"
to = "/index.html"
status = 200

Loading