Skip to content

Commit

Permalink
[Refactor] 온보딩 페이지 폴더구조 변경 (#234)
Browse files Browse the repository at this point in the history
* refactor: 온보딩 페이지 컴포넌트 폴더 삭제 및 컴포넌트명으로 폴더 생성하여 적용 (#230)

* refactor: 상아 피드백 반영해서 컴포넌트 depth 1로 고정 (#230)
  • Loading branch information
suwonthugger authored Dec 22, 2024
1 parent bc2bfc5 commit c137655
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/pages/OnboardingPage/OnboardingPage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { useState } from 'react';

import { StepField, StepService, StepStart } from './components';
import StepField from './StepField/StepField';
import StepService from './StepService/StepService';
import StepStart from './StepStart/StepStart';
import { FIELDS } from './constants';
import { useFunnel } from './hooks/useFunnel';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { ChangeEvent, KeyboardEvent, useState } from 'react';

import { BackIcon } from '@/shared/assets/home/svgs';

import { BoxAllowedService, ButtonService, Tabs } from './components';
import BoxAllowedService from './BoxAllowedService/BoxAllowedService';
import ButtonService from './ButtonService/ButtonService';
import Tabs from './Tabs/Tabs';

interface StepServiceProps {
setStep: (step: string) => void;
Expand Down

This file was deleted.

3 changes: 0 additions & 3 deletions src/pages/OnboardingPage/components/index.ts

This file was deleted.

0 comments on commit c137655

Please sign in to comment.