-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: import 문 구분을 위해 폴더 구조 배럴파일 구조로 변경 (#230)
- Loading branch information
1 parent
ccff5a1
commit ec9e9e7
Showing
27 changed files
with
40 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as BoxCategory } from './BoxCategory/BoxCategory'; | ||
export { default as BoxTodayTodo } from './BoxTodayTodo/BoxTodayTodo'; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as ButtonMoreFriends } from './ButtonMoreFriends/ButtonMoreFriends'; | ||
export { default as ButtonUserProfile } from './ButtonUserProfile/ButtonUserProfile'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...s/Setting/ModalContentsAlert/Complete.tsx → .../ModalContentsAlert/Complete/Complete.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nts/Setting/ModalContentsAlert/Logout.tsx → ...nts/ModalContentsAlert/Logoout/Logout.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/pages/HomePage/ModalContents/ModalContentsAlert/ModalContentsAlert.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Complete from '../../../ModalContentsAlert/Complete/Complete'; | ||
import DeleteAccount from '../../../ModalContentsAlert/DeleteAccount/DeleteAccount'; | ||
import Logout from '../../../ModalContentsAlert/Logoout/Logout'; | ||
|
||
const ModalContentsAlert = { | ||
Logout: Logout, | ||
DeleteAccount: DeleteAccount, | ||
Complete: Complete, | ||
}; | ||
|
||
export default ModalContentsAlert; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
src/pages/HomePage/ModalContents/Setting/ModalContentsAlert/ModalContentsAlert.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as ModalContentsFriends } from './Friends/ModalContentsFriends'; | ||
export { default as ModalContentsCategory } from './Category/ModalContentsCategory'; | ||
export { default as ModalContentsAlert } from './ModalContentsAlert/ModalContentsAlert'; | ||
export { default as ModalContentsCategory } from './ModalContentsCategory/ModalContentsCategory'; | ||
export { default as ModalContentsFriends } from './ModalContentsFriends/ModalContentsFriends'; |