-
Notifications
You must be signed in to change notification settings - Fork 0
13. 프론트엔드 폴더 구조
Jin H. BANG edited this page Apr 20, 2023
·
1 revision
src
├── components
│ ├── commons
│ │ ├── footer
│ │ ├── header
│ │ └── modals
│ │ ├── popup-modal
│ │ └── profile-modal
│ └── pages
│ ├── chat
│ │ ├── channel-page
│ │ ├── chat-modal
│ │ │ ├── createroom-modal
│ │ │ ├── invite-modal
│ │ │ ├── roomside-modal
│ │ │ └── setroom-modal
│ │ ├── chatroom-page
│ │ └── mymsg-page
│ ├── friend
│ │ ├── addfriend-page
│ │ ├── bannedlist-page
│ │ └── friendlist-page
│ ├── game
│ │ ├── game-modal
│ │ │ ├── buygame-modal
│ │ │ ├── matching-modal
│ │ │ └── readygame-modal
│ │ ├── gamerecord-page
│ │ ├── gameshop-page
│ │ ├── playgame-page
│ │ └── watchgame-page
│ ├── login
│ │ ├── auth-page
│ │ └── login-page
│ └── profiles
│ ├── chatadmin-modal
│ ├── chatnormal-modal
│ ├── editmy-modal
│ ├── friend-modal
│ ├── friend-page
│ └── my-page
└── recoil
├── globals
│ ├── atoms
│ └── selectors
└── locals
├── chat
│ ├── atoms
│ └── selectors
├── friend
│ ├── atoms
│ └── selectors
├── game
│ ├── atoms
│ └── selectors
├── login
│ ├── atoms
│ └── selectors
└── profile
├── atoms
└── selectors