File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 11import styles from "@/components/Home/Home.module.scss" ;
2- import HomeNavigateConfirmModal from "@/components/HomeNavigateConfirmModal/HomeNavigateConfirmModal" ;
32import IconButton from "@/components/ui/IconButton/IconButton" ;
43import Text from "@/components/ui/Text/Text" ;
54
6- import { useOverlay } from "@/hooks/common/useOverlay" ;
75import { useRoute } from "@/hooks/common/useRoute" ;
86
97const Home = ( ) => {
10- const { isOpen, handleClose } = useOverlay ( ) ;
11-
8+ // 이후 네이티브 라우팅으로 변경
129 const { navigateToReceiptEdit, navigateToRecognitionFail } = useRoute ( ) ;
1310
1411 return (
@@ -28,8 +25,6 @@ const Home = () => {
2825 < IconButton text = "갤러리" iconName = "gallery" onClick = { navigateToRecognitionFail } />
2926 < IconButton text = "카메라" iconName = "camera" onClick = { navigateToReceiptEdit } />
3027 </ div >
31-
32- < HomeNavigateConfirmModal isOpen = { isOpen } handleClose = { handleClose } />
3328 </ div >
3429 ) ;
3530} ;
You can’t perform that action at this time.
0 commit comments