File tree Expand file tree Collapse file tree 1 file changed +1
-25
lines changed
Expand file tree Collapse file tree 1 file changed +1
-25
lines changed Original file line number Diff line number Diff line change 1515 * TODO: 검증 완료 후 이 파일 + router.tsx 테스트 경로 삭제
1616 */
1717
18- import { useState } from 'react' ;
19-
2018import FloorPlanSelectStep from './steps/floorPlanSelect/FloorPlanSelectStep' ;
2119
2220import type { CompletedFloorPlan } from '../types/funnel/steps' ;
@@ -33,29 +31,7 @@ const handleNext = (data: CompletedFloorPlan) => {
3331} ;
3432
3533const FloorPlanSelectTest = ( ) => {
36- const [ isDragSheetOpen , setIsDragSheetOpen ] = useState ( true ) ;
37-
38- return (
39- < >
40- < FloorPlanSelectStep context = { MOCK_CONTEXT } onNext = { handleNext } />
41- { /*
42- <DragHandleBottomSheet
43- open={isDragSheetOpen}
44- contentSlot={
45- <p style={{ padding: '1.6rem' }}>DragHandle 테스트 콘텐츠</p>
46- }
47- primaryButton={
48- <ActionButton
49- size="2XL"
50- fullWidth
51- onClick={() => setIsDragSheetOpen(false)}
52- >
53- 확인
54- </ActionButton>
55- }
56- /> */ }
57- </ >
58- ) ;
34+ return < FloorPlanSelectStep context = { MOCK_CONTEXT } onNext = { handleNext } /> ;
5935} ;
6036
6137export default FloorPlanSelectTest ;
You can’t perform that action at this time.
0 commit comments