Skip to content

Commit b73df2a

Browse files
김수영KimSuyoung
andauthored
[김수영] sprint8 (#112)
* fix :AllItem 컴포넌트 * refactor: js,jsx -> tsx * feat:typescript로 수정 --------- Co-authored-by: KimSuyoung <kimsuyoung@KimSuyoungui-MacBookAir.local>
1 parent 17fee58 commit b73df2a

37 files changed

+877
-631
lines changed

.bash_profile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
parse_git_branch() {
2+
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
3+
}
4+
export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

.gitignore

Lines changed: 46 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,50 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
21

3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
2+
### macOS ###
3+
# General
4+
.DS_Store
5+
.AppleDouble
6+
.LSOverride
77

8-
# testing
9-
/coverage
8+
# Icon must end with two \r
9+
Icon
1010

11-
# production
12-
/build
1311

14-
# misc
15-
.DS_Store
16-
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
20-
21-
npm-debug.log*
22-
yarn-debug.log*
23-
yarn-error.log*
12+
# Thumbnails
13+
._*
14+
15+
# Files that might appear in the root of a volume
16+
.DocumentRevisions-V100
17+
.fseventsd
18+
.Spotlight-V100
19+
.TemporaryItems
20+
.Trashes
21+
.VolumeIcon.icns
22+
.com.apple.timemachine.donotpresent
23+
24+
# Directories potentially created on remote AFP share
25+
.AppleDB
26+
.AppleDesktop
27+
Network Trash Folder
28+
Temporary Items
29+
.apdisk
30+
31+
### macOS Patch ###
32+
# iCloud generated files
33+
*.icloud
34+
35+
### react ###
36+
.DS_*
37+
*.log
38+
logs
39+
**/*.backup.*
40+
**/*.back.*
41+
42+
node_modules
43+
bower_components
44+
45+
*.sublime*
46+
47+
psd
48+
thumb
49+
sketch
50+

package-lock.json

Lines changed: 71 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@
66
"@testing-library/jest-dom": "^5.17.0",
77
"@testing-library/react": "^13.4.0",
88
"@testing-library/user-event": "^13.5.0",
9+
"@types/jest": "^29.5.13",
10+
"@types/node": "^22.7.6",
11+
"@types/react": "^18.3.11",
12+
"@types/react-dom": "^18.3.1",
13+
"axios": "^1.7.7",
914
"react": "^18.2.0",
1015
"react-dom": "^18.2.0",
1116
"react-router-dom": "^6.26.1",
1217
"react-scripts": "5.0.1",
18+
"typescript": "^5.6.3",
1319
"web-vitals": "^2.1.4"
1420
},
1521
"scripts": {

public/favicon.ico

-3.78 KB
Binary file not shown.

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

public/manifest.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

public/robots.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/App.js renamed to src/App.tsx

File renamed without changes.

0 commit comments

Comments
 (0)