-
Notifications
You must be signed in to change notification settings - Fork 7
ERD, 폴더구조
Najeong-Kim edited this page Dec 2, 2021
·
7 revisions
Client
├── public
│ ├── fonts
│ ├── images
│ └── sounds
└── src
├── assets
│ └── icons
├── components
│ ├── ChannelHeader
│ ├── Chat
│ │ ├── ChatInput
│ │ ├── ChatList
│ │ │ └── ChatItem
│ │ │ ├── AddChatReaction
│ │ │ ├── ChatReaction
│ │ │ └── ThreadPreview
│ │ ├── FileItem
│ │ ├── Thread
│ │ │ └── ThreadItem
│ │ └── UserConnection
│ ├── Meet
│ │ ├── MeetChat
│ │ └── MeetVideo
│ │ ├── FocusedVideo
│ │ ├── MeetButton
│ │ ├── MyVideo
│ │ └── OtherVideo
│ ├── Modal
│ │ ├── ChannelCreate
│ │ │ └── ChannelTypeItem
│ │ ├── ChannelDelete
│ │ ├── GroupAdd
│ │ ├── GroupCreate
│ │ ├── GroupDelete
│ │ ├── GroupInvite
│ │ ├── GroupJoin
│ │ ├── Logout
│ │ ├── UserEdit
│ │ └── UserInformation
│ ├── SideBar
│ │ ├── Channels
│ │ │ ├── ChannelListItem
│ │ │ │ └── ChannelMeetingCount
│ │ │ └── MeetingUserList
│ │ ├── GroupNav
│ │ ├── GroupSetting
│ │ └── Profile
│ └── common
│ ├── Background
│ ├── Empty
│ ├── Icons
│ ├── RestrictedRoute
│ └── Toast
│ └── Item
├── hooks
├── pages
│ ├── Loading
│ ├── Main
│ ├── NotFound
│ ├── SignIn
│ └── SignUp
├── redux
│ ├── groupConnection
│ ├── selectedChannel
│ ├── selectedChat
│ ├── selectedGroup
│ ├── selectedUser
│ ├── toast
│ └── userDevice
├── styles
├── types
└── utils
├── api
├── constants
└── test
src
├── controllers
│ └── socket
├── db
│ ├── entities
│ └── repositories
├── loaders
├── messages
├── routes
│ └── api
├── types
│ └── socket
└── utils
└── validators