-
Notifications
You must be signed in to change notification settings - Fork 1
[RAC-471] chore: 폴더 구조 재정리 #343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 64 commits
8617b51
62d374b
a405259
6ff737d
f9ad338
09d0aac
bf2bf7d
03e4411
3626edc
ab3e4d7
38e0984
5417254
36c1329
9dd2984
50450e2
b8941c3
eb7c1c2
c67ae00
7b3b6ee
57492b1
66d35d4
85535c2
4da5077
d5649a4
f5985c4
357eb82
85f2614
419e4b5
ecd80d0
2bab84c
8a6b8c2
dfa19d9
20989b9
3bee7dc
5b6ce33
7c226fb
acb96eb
e008300
4c0747b
6d069ca
826867b
a3a83be
2b403b6
8e983c1
dca5009
4abc85d
487c4ce
d05fd6b
b07d70e
a0338ac
15f638e
8c6680d
ced2fd1
266af86
adf1f7d
aa7f956
2bfc736
8882742
93d7c06
ef06750
209f7ba
b569bc0
d47365d
b90ce01
b26d12b
3078765
d5dcb9e
a354435
6130014
3997ccb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| import Image from 'next/image'; | ||
| import styled from 'styled-components'; | ||
| import { WISH_SENIOR_MENTOR_MSG } from '../../constant'; | ||
| import NextBtn from '@/components/Button/NextBtn'; | ||
| import NextBtn from '@/components/comon/Button/NextBtn'; | ||
|
||
| import { WishSeniorTitle, WishSeniorSubTitle, NextBtnBox } from '../(template)'; | ||
|
|
||
| export function WishSeniorInfo({ onClick }: { onClick: () => void }) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| import styled from 'styled-components'; | ||
| import { WISH_SENIOR_MENTOR_MSG } from '../../constant'; | ||
| import { NextBtnBox, WishSeniorSubTitle, WishSeniorTitle } from '../(template)'; | ||
| import NextBtn from '@/components/Button/NextBtn'; | ||
| import NextBtn from '@/components/comon/Button/NextBtn'; | ||
|
||
| import { useForm } from 'react-hook-form'; | ||
| import { yupResolver } from '@hookform/resolvers/yup'; | ||
| import { phoneNumSchema } from '@/components/SingleForm/PhoneNumForm/phoneNumSchema'; | ||
| import TextForm from '@/components/SingleForm/TextForm'; | ||
| import SingleValidator from '@/components/Validator/SingleValidator'; | ||
| import { phoneNumSchema } from '@/components/Form/PhoneNumForm/phoneNumSchema'; | ||
| import TextForm from '@/components/Form/TextForm'; | ||
| import SingleValidator from '@/components/comon/SingleValidator'; | ||
| import { useEffect } from 'react'; | ||
|
|
||
| export function WishSeniorPhoneNum({ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| 'use client'; | ||
| import ProgressBar from '@/components/Bar/ProgressBar'; | ||
| import GoogleAnalytics from '@/components/GA/GA'; | ||
| import BackHeader from '@/components/Header/BackHeader'; | ||
| import BackHeader from '@/components/comon/Header/BackHeader'; | ||
|
||
| import ShortRiseUpModal from '@/components/Modal/ShortRiseUpModal'; | ||
| import TextareaForm from '@/components/SingleForm/TextareaForm'; | ||
| import TextareaForm from '@/components/Form/TextareaForm'; | ||
| import { | ||
| MENTORING_NOTICE, | ||
| MENTORING_QUESTION, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
컴포넌트 구조 개선사항
컴포넌트 구조가 더 명확해졌지만, 다음 개선사항이 있습니다:
다음과 같이 수정해주세요:
Also applies to: 10-10, 11-11