We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
타입스크립트로 마이그레이션
├── App.tsx
├── app.style.js
├── assets
│ ├── audio
│ │ └── Windows_XP_Recycle.wav
│ ├── font
│ │ ├── W95FA.otf
│ │ ├── w95fa.woff
│ │ └── w95fa.woff2
│ └── message.json
├── components
│ ├── DesktopIcon
│ │ ├── DesktopIcon.tsx
│ │ ├── DesktopIconView.tsx
│ │ └── desktopIcon.style.ts
│ ├── DiaryForm
│ │ ├── DiaryForm.tsx
│ │ ├── DiaryFormView.tsx
│ │ └── diaryForm.style.ts
│ ├── DiaryList
│ │ ├── DiaryList.tsx
│ │ ├── DiaryListView.tsx
│ │ └── diaryList.style.ts
│ ├── DragContainer
│ │ └── DragCont.tsx
│ ├── Footer
│ │ ├── Footer.tsx
│ │ ├── FooterView.tsx
│ │ └── footer.style.ts
│ ├── Modal
│ │ ├── Modal.tsx
│ │ └── modal.style.ts
│ └── Navbar
│ ├── Nav.tsx
│ ├── NavView.tsx
│ └── nav.style.ts
├── context
│ └── AuthContext.js
├── firebase
│ └── config.js
├── hooks
│ ├── useAuthContext.ts
│ ├── useCollection.ts
│ ├── useFirestore.ts
│ ├── useLogin.ts
│ ├── useLogout.ts
│ ├── useRandomMsg.ts
│ └── useSignup.ts
├── img
│ ├── Bin.png
│ ├── Figma.png
│ ├── Folder.png
│ ├── Info.png
│ ├── Internet.png
│ ├── MyComputer.png
│ ├── Network.png
│ ├── Off
│ │ ├── On=Off.png
│ │ └── On=On.png
│ ├── ShutDown.png
│ ├── Wordpad.png
│ └── github.png
├── index.js
├── manifest.json
├── pages
│ ├── account
│ │ ├── Login
│ │ │ ├── Login.tsx
│ │ │ └── LoginView.tsx
│ │ ├── Signup
│ │ │ ├── Signup.tsx
│ │ │ └── SignupView.tsx
│ │ └── shared.style.ts
│ ├── etc
│ │ ├── Loading.tsx
│ │ ├── Off.tsx
│ │ └── loading.style.ts
│ └── home
│ ├── Home.module.css
│ ├── Home.tsx
│ ├── HomeView.tsx
│ └── IconArea
│ ├── IconArea.tsx
│ ├── IconAreaView.tsx
│ └── iconArea.style.ts
├── redux
│ ├── reducer.ts
│ └── store.ts
├── routes
│ └── Router.tsx
└── types
└── state.type.ts
The text was updated successfully, but these errors were encountered:
Chore: 패키지 매니저 수정 #8
55f7208
- typescript 셋팅
Chore: tsconfig 설정 #8
8262ad7
Refactor: 타입스크립트 마이그레이션-1 #8
fe45c23
Refactor: 타입스크립트 마이그레이션-2 #8
83abce1
sasha1107
Successfully merging a pull request may close this issue.
타입스크립트로 마이그레이션
├── App.tsx
├── app.style.js
├── assets
│ ├── audio
│ │ └── Windows_XP_Recycle.wav
│ ├── font
│ │ ├── W95FA.otf
│ │ ├── w95fa.woff
│ │ └── w95fa.woff2
│ └── message.json
├── components
│ ├── DesktopIcon
│ │ ├── DesktopIcon.tsx
│ │ ├── DesktopIconView.tsx
│ │ └── desktopIcon.style.ts
│ ├── DiaryForm
│ │ ├── DiaryForm.tsx
│ │ ├── DiaryFormView.tsx
│ │ └── diaryForm.style.ts
│ ├── DiaryList
│ │ ├── DiaryList.tsx
│ │ ├── DiaryListView.tsx
│ │ └── diaryList.style.ts
│ ├── DragContainer
│ │ └── DragCont.tsx
│ ├── Footer
│ │ ├── Footer.tsx
│ │ ├── FooterView.tsx
│ │ └── footer.style.ts
│ ├── Modal
│ │ ├── Modal.tsx
│ │ └── modal.style.ts
│ └── Navbar
│ ├── Nav.tsx
│ ├── NavView.tsx
│ └── nav.style.ts
├── context
│ └── AuthContext.js
├── firebase
│ └── config.js
├── hooks
│ ├── useAuthContext.ts
│ ├── useCollection.ts
│ ├── useFirestore.ts
│ ├── useLogin.ts
│ ├── useLogout.ts
│ ├── useRandomMsg.ts
│ └── useSignup.ts
├── img
│ ├── Bin.png
│ ├── Figma.png
│ ├── Folder.png
│ ├── Info.png
│ ├── Internet.png
│ ├── MyComputer.png
│ ├── Network.png
│ ├── Off
│ │ ├── On=Off.png
│ │ └── On=On.png
│ ├── ShutDown.png
│ ├── Wordpad.png
│ └── github.png
├── index.js
├── manifest.json
├── pages
│ ├── account
│ │ ├── Login
│ │ │ ├── Login.tsx
│ │ │ └── LoginView.tsx
│ │ ├── Signup
│ │ │ ├── Signup.tsx
│ │ │ └── SignupView.tsx
│ │ └── shared.style.ts
│ ├── etc
│ │ ├── Loading.tsx
│ │ ├── Off.tsx
│ │ └── loading.style.ts
│ └── home
│ ├── Home.module.css
│ ├── Home.tsx
│ ├── HomeView.tsx
│ └── IconArea
│ ├── IconArea.tsx
│ ├── IconAreaView.tsx
│ └── iconArea.style.ts
├── redux
│ ├── reducer.ts
│ └── store.ts
├── routes
│ └── Router.tsx
└── types
└── state.type.ts
The text was updated successfully, but these errors were encountered: