작업중

This commit is contained in:
focp212@naver.com
2025-09-29 16:59:26 +09:00
parent 74ab29f80a
commit 0a747469a6
18 changed files with 313 additions and 111 deletions

View File

@@ -9,7 +9,8 @@ import { useEffect, useState } from 'react';
export const FooterNavigation = ({
setMenuOn,
footerCurrentPage
footerCurrentPage,
setFavoriteEdit
}: FooterProps) => {
const { navigate } = useNavigate();
const [isFooterOn, setIsFooterOn] = useState<boolean>(false);
@@ -20,6 +21,7 @@ export const FooterNavigation = ({
}
};
const onClickToOpenMenu = () => {
setFavoriteEdit(false);
setMenuOn(true);
};