-
Notifications
You must be signed in to change notification settings - Fork 1
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
타이어 커스텀 페이지 구현 - 측면 디자인 close #23 #24
Conversation
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.
확인했습니다~!
const [colors, setColors] = useState<ColorData[]>([]); | ||
const [accessories, setAccessories] = useState<AccessoryData[]>([]); | ||
const [selectedPattern] = useRecoilState(selectedPatternIdState); | ||
const [selectedWheel] = useRecoilState(selectedWheelIdState); | ||
const step: number = Number(searchParams.get('step')); | ||
|
||
if (step < 0 || step > 3) { | ||
return <div>올바르지 않은 접근입니다.</div>; |
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.
올바르지 않은 접근일 때는 어떻게 처리가 되나요?
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.
Motivation
Problem Solving
To Reviewer