-
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
├── components
│ ├── ChannelHeader
│ ├── Chat
│ │ ├── ChatInput
│ │ ├── ChatList
│ │ │ └── ChatItem
│ │ │ ├── AddChatReaction
│ │ │ ├── ChatReaction
│ │ │ └── ThreadPreview
│ │ ├── FileItem
│ │ ├── Thread
│ │ │ └── ThreadItem
│ │ └── UserConnection
│ ├── Meet
│ │ ├── MeetChat
│ │ └── MeetVideo
│ │ ├── FocusedVideo
│ │ ├── MeetButton
│ │ ├── MyVideo
│ │ └── OtherVideo
│ ├── Modal
│ ├── SideBar
│ │ ├── Channels
│ │ │ ├── ChannelListItem
│ │ │ └── MeetingUserList
│ │ ├── GroupNav
│ │ ├── GroupSetting
│ │ └── Profile
│ └── common
│ ├── Background
│ ├── Empty
│ ├── Icons
│ ├── RestrictedRoute
│ └── Toast
├── hooks
├── pages
│ ├── Loading
│ ├── Main
│ ├── NotFound
│ ├── SignIn
│ └── SignUp
├── redux
├── styles
├── types
└── utils
├── api
├── constants
└── test
src
├── controllers
│ └── socket
├── db
│ ├── entities
│ └── repositories
├── loaders
├── messages
├── routes
│ └── api
├── types
│ └── socket
└── utils
└── validators