├── .babelrc ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── .prettierrc ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── public └── images │ ├── alarmModal │ ├── already.svg │ └── checked.svg │ ├── common │ ├── 404.svg │ ├── alarm.svg │ ├── github.svg │ ├── joinProfile.svg │ ├── mic_team.png │ ├── modalDog.svg │ └── update.svg │ ├── footerMenu │ ├── menu01.svg │ ├── menu02.svg │ └── menu03.svg │ ├── header │ ├── FilledHeart.svg │ ├── alarm.svg │ ├── back.svg │ ├── heart.svg │ ├── nonAlarm.svg │ ├── search.svg │ ├── searchBack.svg │ └── setting.svg │ ├── home │ └── dog.svg │ ├── icon │ └── dog.svg │ ├── login │ ├── character_color.svg │ ├── email.svg │ ├── kakao.svg │ └── naver.svg │ ├── post │ ├── comment.svg │ ├── comment_delet.svg │ ├── recoment.svg │ └── upload.svg │ ├── signup │ ├── character.svg │ ├── character_com.svg │ ├── check.svg │ ├── job01.svg │ ├── job02.svg │ ├── job03.svg │ ├── logo.svg │ └── profile.svg │ ├── splashScreen │ ├── dog.svg │ ├── logo01.svg │ └── logo2.svg │ └── together │ ├── btn_delete.svg │ └── btn_write.svg ├── src ├── apis │ ├── dummyData │ │ └── index.tsx │ └── index.tsx ├── components │ ├── Alarm │ │ ├── List │ │ │ └── index.tsx │ │ └── Title │ │ │ └── index.tsx │ ├── AlarmModal │ │ ├── index.tsx │ │ └── styles.tsx │ ├── AuthLogin │ │ └── index.tsx │ ├── Common │ │ ├── BigTitle │ │ │ └── index.tsx │ │ ├── CommentModal │ │ │ └── index.tsx │ │ ├── FlatBox │ │ │ └── index.tsx │ │ ├── FootButton │ │ │ └── index.tsx │ │ ├── FooterMenu │ │ │ └── index.tsx │ │ ├── HashWrap │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── Back │ │ │ │ └── index.tsx │ │ │ ├── BackOptional │ │ │ │ └── index.tsx │ │ │ ├── EditBackOptional │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── IsModal │ │ │ └── index.tsx │ │ ├── JobButton │ │ │ └── index.tsx │ │ ├── PasswordField │ │ │ └── index.tsx │ │ ├── TextField │ │ │ └── index.tsx │ │ ├── TextFieldProfile │ │ │ └── index.tsx │ │ ├── Title │ │ │ └── index.tsx │ │ ├── wellseeError │ │ │ └── index.tsx │ │ └── wellseeErrorHome │ │ │ └── index.tsx │ ├── ConfirmModal │ │ ├── index.tsx │ │ └── styles.tsx │ ├── DataForm │ │ ├── index.tsx │ │ └── style.tsx │ ├── EditForm │ │ └── index.tsx │ ├── Home │ │ ├── Header │ │ │ └── index.tsx │ │ ├── Main │ │ │ └── index.tsx │ │ └── StudySection │ │ │ └── index.tsx │ ├── LikePost │ │ └── index.tsx │ ├── Loading │ │ └── index.tsx │ ├── LogOutModal │ │ ├── index.tsx │ │ └── styles.tsx │ ├── Modal │ │ ├── index.tsx │ │ └── styles.tsx │ ├── MyPage │ │ ├── Career │ │ │ ├── index.tsx │ │ │ └── style.tsx │ │ ├── Portfolio │ │ │ ├── index.tsx │ │ │ └── style.tsx │ │ ├── Profile │ │ │ ├── index.tsx │ │ │ └── style.tsx │ │ └── School │ │ │ ├── index.tsx │ │ │ └── style.tsx │ ├── PortFolioDeleteForm │ │ └── index.tsx │ ├── Post │ │ ├── EditComment │ │ │ └── index.tsx │ │ └── PostFooter │ │ │ └── index.tsx │ ├── SignupDeleteForm │ │ └── index.tsx │ ├── SplashScreen │ │ └── index.tsx │ ├── SubmitModal │ │ ├── index.tsx │ │ └── styles.tsx │ └── Together │ │ ├── Header │ │ ├── Search │ │ │ ├── index.tsx │ │ │ └── style.tsx │ │ ├── index.tsx │ │ └── style.tsx │ │ ├── SearchBox │ │ ├── index.tsx │ │ └── style.tsx │ │ ├── StudyBox │ │ ├── index.tsx │ │ └── style.tsx │ │ ├── StudySection │ │ └── index.tsx │ │ ├── StudySectionOption │ │ └── index.tsx │ │ ├── StudySlider │ │ ├── index.tsx │ │ └── style.tsx │ │ └── WriteButton │ │ └── index.tsx ├── hooks │ ├── useHandleOverflow.ts │ └── useHeader.ts ├── lib │ └── apiClient.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── alarm │ │ └── index.tsx │ ├── class_join_list │ │ └── [id].tsx │ ├── failure │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── index.tsx │ ├── mypage │ │ └── index.tsx │ ├── posts │ │ ├── [id].tsx │ │ └── comment │ │ │ └── [id].tsx │ ├── sign_in │ │ ├── auth_start │ │ │ └── index.tsx │ │ ├── email_start │ │ │ └── index.tsx │ │ ├── find_password │ │ │ └── index.tsx │ │ └── reset_password │ │ │ └── index.tsx │ ├── sign_up │ │ ├── completion │ │ │ └── index.tsx │ │ ├── experience │ │ │ ├── index.tsx │ │ │ ├── need_update │ │ │ │ └── index.tsx │ │ │ └── update.tsx │ │ ├── index.tsx │ │ ├── portfolio │ │ │ ├── index.tsx │ │ │ ├── need_update │ │ │ │ └── index.tsx │ │ │ └── update.tsx │ │ ├── profile_start │ │ │ └── index.tsx │ │ ├── school │ │ │ ├── index.tsx │ │ │ ├── need_update │ │ │ │ └── index.tsx │ │ │ └── update.tsx │ │ ├── self_introduction │ │ │ ├── index.tsx │ │ │ ├── need_update │ │ │ │ └── index.tsx │ │ │ └── update.tsx │ │ └── something_job │ │ │ └── index.tsx │ ├── template │ │ └── index.tsx │ ├── together │ │ ├── index.tsx │ │ ├── search │ │ │ └── index.tsx │ │ ├── search_result │ │ │ └── [id].tsx │ │ └── write │ │ │ └── index.tsx │ └── token │ │ └── index.tsx ├── reducers │ ├── comments │ │ └── index.tsx │ ├── common │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── index.tsx │ ├── mypage │ │ └── index.tsx │ ├── notifications │ │ └── index.tsx │ ├── posts │ │ └── index.tsx │ └── todos │ │ └── index.tsx ├── sagas │ ├── comments │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── index.tsx │ ├── mypage │ │ └── index.tsx │ ├── notifications │ │ └── index.tsx │ └── posts │ │ └── index.tsx ├── store │ └── index.tsx ├── styles │ ├── common.tsx │ └── global-styles.tsx └── types │ └── index.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/package.json -------------------------------------------------------------------------------- /public/images/alarmModal/already.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/alarmModal/already.svg -------------------------------------------------------------------------------- /public/images/alarmModal/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/alarmModal/checked.svg -------------------------------------------------------------------------------- /public/images/common/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/404.svg -------------------------------------------------------------------------------- /public/images/common/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/alarm.svg -------------------------------------------------------------------------------- /public/images/common/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/github.svg -------------------------------------------------------------------------------- /public/images/common/joinProfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/joinProfile.svg -------------------------------------------------------------------------------- /public/images/common/mic_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/mic_team.png -------------------------------------------------------------------------------- /public/images/common/modalDog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/modalDog.svg -------------------------------------------------------------------------------- /public/images/common/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/common/update.svg -------------------------------------------------------------------------------- /public/images/footerMenu/menu01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/footerMenu/menu01.svg -------------------------------------------------------------------------------- /public/images/footerMenu/menu02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/footerMenu/menu02.svg -------------------------------------------------------------------------------- /public/images/footerMenu/menu03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/footerMenu/menu03.svg -------------------------------------------------------------------------------- /public/images/header/FilledHeart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/FilledHeart.svg -------------------------------------------------------------------------------- /public/images/header/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/alarm.svg -------------------------------------------------------------------------------- /public/images/header/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/back.svg -------------------------------------------------------------------------------- /public/images/header/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/heart.svg -------------------------------------------------------------------------------- /public/images/header/nonAlarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/nonAlarm.svg -------------------------------------------------------------------------------- /public/images/header/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/search.svg -------------------------------------------------------------------------------- /public/images/header/searchBack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/searchBack.svg -------------------------------------------------------------------------------- /public/images/header/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/header/setting.svg -------------------------------------------------------------------------------- /public/images/home/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/home/dog.svg -------------------------------------------------------------------------------- /public/images/icon/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/icon/dog.svg -------------------------------------------------------------------------------- /public/images/login/character_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/login/character_color.svg -------------------------------------------------------------------------------- /public/images/login/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/login/email.svg -------------------------------------------------------------------------------- /public/images/login/kakao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/login/kakao.svg -------------------------------------------------------------------------------- /public/images/login/naver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/login/naver.svg -------------------------------------------------------------------------------- /public/images/post/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/post/comment.svg -------------------------------------------------------------------------------- /public/images/post/comment_delet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/post/comment_delet.svg -------------------------------------------------------------------------------- /public/images/post/recoment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/post/recoment.svg -------------------------------------------------------------------------------- /public/images/post/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/post/upload.svg -------------------------------------------------------------------------------- /public/images/signup/character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/character.svg -------------------------------------------------------------------------------- /public/images/signup/character_com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/character_com.svg -------------------------------------------------------------------------------- /public/images/signup/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/check.svg -------------------------------------------------------------------------------- /public/images/signup/job01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/job01.svg -------------------------------------------------------------------------------- /public/images/signup/job02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/job02.svg -------------------------------------------------------------------------------- /public/images/signup/job03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/job03.svg -------------------------------------------------------------------------------- /public/images/signup/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/logo.svg -------------------------------------------------------------------------------- /public/images/signup/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/signup/profile.svg -------------------------------------------------------------------------------- /public/images/splashScreen/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/splashScreen/dog.svg -------------------------------------------------------------------------------- /public/images/splashScreen/logo01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/splashScreen/logo01.svg -------------------------------------------------------------------------------- /public/images/splashScreen/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/splashScreen/logo2.svg -------------------------------------------------------------------------------- /public/images/together/btn_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/together/btn_delete.svg -------------------------------------------------------------------------------- /public/images/together/btn_write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/public/images/together/btn_write.svg -------------------------------------------------------------------------------- /src/apis/dummyData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/apis/dummyData/index.tsx -------------------------------------------------------------------------------- /src/apis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/apis/index.tsx -------------------------------------------------------------------------------- /src/components/Alarm/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Alarm/List/index.tsx -------------------------------------------------------------------------------- /src/components/Alarm/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Alarm/Title/index.tsx -------------------------------------------------------------------------------- /src/components/AlarmModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/AlarmModal/index.tsx -------------------------------------------------------------------------------- /src/components/AlarmModal/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/AlarmModal/styles.tsx -------------------------------------------------------------------------------- /src/components/AuthLogin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/AuthLogin/index.tsx -------------------------------------------------------------------------------- /src/components/Common/BigTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/BigTitle/index.tsx -------------------------------------------------------------------------------- /src/components/Common/CommentModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/CommentModal/index.tsx -------------------------------------------------------------------------------- /src/components/Common/FlatBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/FlatBox/index.tsx -------------------------------------------------------------------------------- /src/components/Common/FootButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/FootButton/index.tsx -------------------------------------------------------------------------------- /src/components/Common/FooterMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/FooterMenu/index.tsx -------------------------------------------------------------------------------- /src/components/Common/HashWrap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/HashWrap/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/Back/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/Header/Back/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/BackOptional/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/Header/BackOptional/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/EditBackOptional/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/Header/EditBackOptional/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Common/IsModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/IsModal/index.tsx -------------------------------------------------------------------------------- /src/components/Common/JobButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/JobButton/index.tsx -------------------------------------------------------------------------------- /src/components/Common/PasswordField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/PasswordField/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/TextField/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TextFieldProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/TextFieldProfile/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/Title/index.tsx -------------------------------------------------------------------------------- /src/components/Common/wellseeError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/wellseeError/index.tsx -------------------------------------------------------------------------------- /src/components/Common/wellseeErrorHome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Common/wellseeErrorHome/index.tsx -------------------------------------------------------------------------------- /src/components/ConfirmModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/ConfirmModal/index.tsx -------------------------------------------------------------------------------- /src/components/ConfirmModal/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/ConfirmModal/styles.tsx -------------------------------------------------------------------------------- /src/components/DataForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/DataForm/index.tsx -------------------------------------------------------------------------------- /src/components/DataForm/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/DataForm/style.tsx -------------------------------------------------------------------------------- /src/components/EditForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/EditForm/index.tsx -------------------------------------------------------------------------------- /src/components/Home/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Home/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Home/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Home/Main/index.tsx -------------------------------------------------------------------------------- /src/components/Home/StudySection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Home/StudySection/index.tsx -------------------------------------------------------------------------------- /src/components/LikePost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/LikePost/index.tsx -------------------------------------------------------------------------------- /src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/LogOutModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/LogOutModal/index.tsx -------------------------------------------------------------------------------- /src/components/LogOutModal/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/LogOutModal/styles.tsx -------------------------------------------------------------------------------- /src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Modal/styles.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Career/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Career/index.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Career/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Career/style.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Portfolio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Portfolio/index.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Portfolio/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Portfolio/style.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Profile/index.tsx -------------------------------------------------------------------------------- /src/components/MyPage/Profile/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/Profile/style.tsx -------------------------------------------------------------------------------- /src/components/MyPage/School/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/School/index.tsx -------------------------------------------------------------------------------- /src/components/MyPage/School/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/MyPage/School/style.tsx -------------------------------------------------------------------------------- /src/components/PortFolioDeleteForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/PortFolioDeleteForm/index.tsx -------------------------------------------------------------------------------- /src/components/Post/EditComment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Post/EditComment/index.tsx -------------------------------------------------------------------------------- /src/components/Post/PostFooter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Post/PostFooter/index.tsx -------------------------------------------------------------------------------- /src/components/SignupDeleteForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/SignupDeleteForm/index.tsx -------------------------------------------------------------------------------- /src/components/SplashScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/SplashScreen/index.tsx -------------------------------------------------------------------------------- /src/components/SubmitModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/SubmitModal/index.tsx -------------------------------------------------------------------------------- /src/components/SubmitModal/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/SubmitModal/styles.tsx -------------------------------------------------------------------------------- /src/components/Together/Header/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/Header/Search/index.tsx -------------------------------------------------------------------------------- /src/components/Together/Header/Search/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/Header/Search/style.tsx -------------------------------------------------------------------------------- /src/components/Together/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Together/Header/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/Header/style.tsx -------------------------------------------------------------------------------- /src/components/Together/SearchBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/SearchBox/index.tsx -------------------------------------------------------------------------------- /src/components/Together/SearchBox/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/SearchBox/style.tsx -------------------------------------------------------------------------------- /src/components/Together/StudyBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudyBox/index.tsx -------------------------------------------------------------------------------- /src/components/Together/StudyBox/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudyBox/style.tsx -------------------------------------------------------------------------------- /src/components/Together/StudySection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudySection/index.tsx -------------------------------------------------------------------------------- /src/components/Together/StudySectionOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudySectionOption/index.tsx -------------------------------------------------------------------------------- /src/components/Together/StudySlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudySlider/index.tsx -------------------------------------------------------------------------------- /src/components/Together/StudySlider/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/StudySlider/style.tsx -------------------------------------------------------------------------------- /src/components/Together/WriteButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/components/Together/WriteButton/index.tsx -------------------------------------------------------------------------------- /src/hooks/useHandleOverflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/hooks/useHandleOverflow.ts -------------------------------------------------------------------------------- /src/hooks/useHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/hooks/useHeader.ts -------------------------------------------------------------------------------- /src/lib/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/lib/apiClient.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/alarm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/alarm/index.tsx -------------------------------------------------------------------------------- /src/pages/class_join_list/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/class_join_list/[id].tsx -------------------------------------------------------------------------------- /src/pages/failure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/failure/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/mypage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/mypage/index.tsx -------------------------------------------------------------------------------- /src/pages/posts/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/posts/[id].tsx -------------------------------------------------------------------------------- /src/pages/posts/comment/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/posts/comment/[id].tsx -------------------------------------------------------------------------------- /src/pages/sign_in/auth_start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_in/auth_start/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_in/email_start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_in/email_start/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_in/find_password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_in/find_password/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_in/reset_password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_in/reset_password/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/completion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/completion/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/experience/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/experience/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/experience/need_update/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/experience/need_update/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/experience/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/experience/update.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/portfolio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/portfolio/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/portfolio/need_update/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/portfolio/need_update/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/portfolio/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/portfolio/update.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/profile_start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/profile_start/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/school/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/school/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/school/need_update/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/school/need_update/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/school/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/school/update.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/self_introduction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/self_introduction/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/self_introduction/need_update/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/self_introduction/need_update/index.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/self_introduction/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/self_introduction/update.tsx -------------------------------------------------------------------------------- /src/pages/sign_up/something_job/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/sign_up/something_job/index.tsx -------------------------------------------------------------------------------- /src/pages/template/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/template/index.tsx -------------------------------------------------------------------------------- /src/pages/together/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/together/index.tsx -------------------------------------------------------------------------------- /src/pages/together/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/together/search/index.tsx -------------------------------------------------------------------------------- /src/pages/together/search_result/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/together/search_result/[id].tsx -------------------------------------------------------------------------------- /src/pages/together/write/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/together/write/index.tsx -------------------------------------------------------------------------------- /src/pages/token/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/pages/token/index.tsx -------------------------------------------------------------------------------- /src/reducers/comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/comments/index.tsx -------------------------------------------------------------------------------- /src/reducers/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/common/index.tsx -------------------------------------------------------------------------------- /src/reducers/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/home/index.tsx -------------------------------------------------------------------------------- /src/reducers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/index.tsx -------------------------------------------------------------------------------- /src/reducers/mypage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/mypage/index.tsx -------------------------------------------------------------------------------- /src/reducers/notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/notifications/index.tsx -------------------------------------------------------------------------------- /src/reducers/posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/posts/index.tsx -------------------------------------------------------------------------------- /src/reducers/todos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/reducers/todos/index.tsx -------------------------------------------------------------------------------- /src/sagas/comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/comments/index.tsx -------------------------------------------------------------------------------- /src/sagas/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/home/index.tsx -------------------------------------------------------------------------------- /src/sagas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/index.tsx -------------------------------------------------------------------------------- /src/sagas/mypage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/mypage/index.tsx -------------------------------------------------------------------------------- /src/sagas/notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/notifications/index.tsx -------------------------------------------------------------------------------- /src/sagas/posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/sagas/posts/index.tsx -------------------------------------------------------------------------------- /src/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/store/index.tsx -------------------------------------------------------------------------------- /src/styles/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/styles/common.tsx -------------------------------------------------------------------------------- /src/styles/global-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/styles/global-styles.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIC-TEAM/wellseecoding-front/HEAD/tsconfig.json --------------------------------------------------------------------------------