Closed sasha1107 closed 1 year ago
src ├── App.jsx ├── app.style.js ├── assets │ ├── 404.png │ ├── 404_sprites.png │ ├── basic-profile-img-small.png │ ├── basic-profile-img.png │ ├── icon │ │ ├── chevron-up.png │ │ ├── icon- more-vertical.png │ │ ├── icon-arrow-left.png │ │ ├── icon-box-fill.png │ │ ├── icon-box.png │ │ ├── icon-delete.png │ │ ├── icon-edit-fill.png │ │ ├── icon-edit.png │ │ ├── icon-facebook-hover.png │ │ ├── icon-facebook.png │ │ ├── icon-google.png │ │ ├── icon-heart-active.png │ │ ├── icon-heart.png │ │ ├── icon-home-fill.png │ │ ├── icon-home.png │ │ ├── icon-image.png │ │ ├── icon-img-layers.png │ │ ├── icon-kakao-hover.png │ │ ├── icon-kakao.png │ │ ├── icon-message-circle-fill.png │ │ ├── icon-message-circle.png │ │ ├── icon-modal.png │ │ ├── icon-more-vertical.png │ │ ├── icon-post-album-off.png │ │ ├── icon-post-album-on.png │ │ ├── icon-post-list-off.png │ │ ├── icon-post-list-on.png │ │ ├── icon-search.png │ │ ├── icon-share.png │ │ ├── icon-upload.png │ │ ├── icon-user-fill.png │ │ ├── icon-user-logout.png │ │ ├── icon-user.png │ │ └── s-icon-more-vertical.png │ ├── imageNotFound.png │ ├── img-button.png │ ├── loading.png │ ├── logo.png │ ├── logotypo.png │ ├── nofollow.png │ ├── product-img-empty.png │ ├── splash_sprites.png │ ├── splash_sprites_mobile.png │ ├── symbol-logo-gray.png │ └── upload-file.png ├── components │ ├── ProfileSetInpsTemp │ │ ├── ProfileSetInpsTemp.jsx │ │ └── ProfileSetInpsTempLogIn.jsx │ ├── backdrop │ │ ├── Backdrop.jsx │ │ └── backdrop.style.js │ ├── button │ │ ├── Button.jsx │ │ └── Topbtn.jsx │ ├── commentInp │ │ ├── CommentInp.jsx │ │ └── commentInp.style.js │ ├── commentItem │ │ ├── CommentItem.jsx │ │ └── commentItem.style.js │ ├── confirmModal │ │ ├── ConfirmModal.jsx │ │ └── confirmModal.style.js │ ├── imageUpload │ │ ├── ImageUpload.jsx │ │ └── imageUpload.style.js │ ├── initialHeading │ │ └── InitialHeading.jsx │ ├── navBar │ │ ├── NavBar.jsx │ │ ├── NavBarItem.jsx │ │ ├── navBar.style.js │ │ └── navBarItem.style.js │ ├── optionModal │ │ ├── OptionModal.jsx │ │ └── optionModal.style.js │ ├── postView │ │ ├── PostAlbum.jsx │ │ ├── PostCard.jsx │ │ └── PostList.jsx │ ├── productImageSet │ │ └── productImageSet.style.js │ ├── profileImageSet │ │ ├── ProfileImageSet.jsx │ │ └── profileImageSet.style.js │ ├── profileSetInps │ │ ├── ProfileSetInps.jsx │ │ ├── ProfileSetInpsLogIn.jsx │ │ └── profileSetInps.style.js │ ├── textarea │ │ └── Textarea.jsx │ ├── toast │ │ └── Toast.jsx │ ├── topbar │ │ └── TopBar.jsx │ └── userinput │ ├── Inp.jsx │ ├── UserInput.jsx │ └── Warning.jsx ├── hook │ ├── useAuth.js │ ├── usePostDetail.js │ ├── usePrevState.js │ └── windowSize.js ├── index.js ├── pages │ ├── account │ │ ├── login │ │ │ └── Login.jsx │ │ ├── loginRegister.style.js │ │ └── register │ │ ├── EditProfileSignUp.jsx │ │ └── Register.jsx │ ├── chat │ │ ├── ChatList.jsx │ │ ├── ChattingRoom.jsx │ │ ├── chat │ │ │ ├── ChatInput │ │ │ │ └── ChatInput.jsx │ │ │ ├── ChatItem │ │ │ │ ├── ChatItem.jsx │ │ │ │ └── chatItem.style.js │ │ │ ├── Incoming │ │ │ │ ├── Incoming.jsx │ │ │ │ └── incoming.style.js │ │ │ ├── Outgoing │ │ │ │ ├── Outgoing.jsx │ │ │ │ └── outgoing.style.js │ │ │ ├── chatdata.json │ │ │ └── sharedStyle.js │ │ └── dateFormat.js │ ├── errorLoading │ │ ├── Error.jsx │ │ ├── Loading.jsx │ │ └── loadingError.style.js │ ├── feed │ │ ├── dateformat.js │ │ ├── home │ │ │ ├── FeedFollower.jsx │ │ │ ├── FeedNoFollower.jsx │ │ │ ├── HomeFeed.jsx │ │ │ └── homeFeed.style.js │ │ ├── post │ │ │ ├── PostDetail.jsx │ │ │ ├── PostEdit.jsx │ │ │ ├── postEditContentImg.style.js │ │ │ ├── postEditUserProfile.style.js │ │ │ └── postEditWrapper.style.js │ │ ├── search │ │ │ └── Search.jsx │ │ └── uploadPostProduct │ │ ├── UploadPost.jsx │ │ └── UploadProduct.jsx │ ├── profile │ │ ├── follow │ │ │ ├── FollowListCard.jsx │ │ │ ├── Follower.jsx │ │ │ ├── Following.jsx │ │ │ ├── NoFollowerFollowing.jsx │ │ │ └── followFollowing.style.js │ │ └── userprofile │ │ ├── EditProfile.jsx │ │ ├── Profile.jsx │ │ ├── ProfileCard.jsx │ │ └── SaledProductCard.jsx │ └── splash │ ├── Splash.jsx │ └── splash.style.js ├── result.txt └── routes └── Router.jsx
44 directories, 137 files
44 directories, 137 files