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

Feature/추억 회상하기 #6

Draft
wants to merge 23 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
bdbb441
fix: lint 설정 수정
jiwonh423 Jul 30, 2023
6be2277
feat: 추억의 조각 양식을 만든다.
jiwonh423 Aug 5, 2023
4e36b51
feat: fetch함수를 추상화한다
jiwonh423 Aug 6, 2023
935d459
fix: baseUrl을 수정한다
jiwonh423 Aug 6, 2023
deabee0
feat: 주마등 페이지 생성 및 공통된 레이아웃을 분리한다
jiwonh423 Aug 6, 2023
4839b76
feat: 주마등 페이지의 제목 및 상단 태그를 완성한다.
jiwonh423 Aug 7, 2023
15d5e7e
refactor: 상단 탭 css를 수정한다
jiwonh423 Aug 7, 2023
fa031b2
feat: 각각의 기억과 기억 리스트의 레이아웃을 구현한다
jiwonh423 Aug 7, 2023
4b9bc6f
feat: 필요한 설정 및 불필요한 파일을 삭제한다
jiwonh423 Aug 23, 2023
9892f1a
feat: 페이지 라우터를 적용하고 tanstack query를 적용한다
jiwonh423 Aug 23, 2023
928db38
refactor: 메인페이지를 삭제한다
jiwonh423 Aug 23, 2023
7ce05a8
feat: 주마등 페이지에 사용하는 카드 컴포넌트를 구현한다
jiwonh423 Aug 23, 2023
3f1df65
feat: Tag컴포넌트를 구현한다
jiwonh423 Aug 23, 2023
9f54762
feat: 페이지 전환을 위한 훅을 분리한다
jiwonh423 Aug 23, 2023
62a769b
feat: 무한 스크롤에 사용할 훅을 구현한다
jiwonh423 Aug 23, 2023
595814d
feat: 주마등 페이지에 필요한 정보를 요청할 훅을 구현한다.
jiwonh423 Aug 23, 2023
886ff35
feat: 기억 페이지에 필요한 정보를 요청할 훅을 구현한다
jiwonh423 Aug 23, 2023
de3c491
feat: 모달 컴포넌트를 구현한다
jiwonh423 Aug 23, 2023
0466abc
feat: 주마등 페이지 상단 바를 구현한다
jiwonh423 Aug 23, 2023
f726ae7
feat: 주마등 페이지를 구현한다
jiwonh423 Aug 23, 2023
0e207d9
feat: 기억 페이지를 구현한다
jiwonh423 Aug 23, 2023
9e54901
feat: 지도 페이지를 구현한다
jiwonh423 Aug 23, 2023
c1b647d
feat: 임시 서버를 구현한다
jiwonh423 Aug 23, 2023
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
29 changes: 15 additions & 14 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@ module.exports = {
es2021: true,
},
extends: [
"standard-with-typescript",
"plugin:react/recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:storybook/recommended",
'standard-with-typescript',
'plugin:react/recommended',
'prettier',
'plugin:prettier/recommended',
'plugin:storybook/recommended',
'eslint-config-prettier',
],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: "./tsconfig.json",
ecmaVersion: 'latest',
sourceType: 'module',
//project: './tsconfig.json',
},
plugins: ["react", "@typescript-eslint"],
plugins: ['react', '@typescript-eslint'],
rules: {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/no-non-null-assertion": "off",
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
},
ignorePatterns: [".eslintrc.cjs", "vite.config.ts"],
ignorePatterns: ['.eslintrc.cjs', 'vite.config.ts'],
};
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
</head>
<body>
<div id="root"></div>
<div id="modal-root"></div>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading