diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index 54ae367..9db19ac 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -1,8 +1,10 @@ + import React from 'react'; import { useNavigate } from 'react-router-dom'; import NavBar from '@/components/NavBar'; import { User, CreditCard, Bell, Lock, HelpCircle, LogOut, ChevronRight } from 'lucide-react'; import { cn } from '@/lib/utils'; + const SettingsOption = ({ icon: Icon, label, @@ -29,6 +31,7 @@ const SettingsOption = ({ ; }; + const Settings = () => { const navigate = useNavigate(); return
@@ -52,7 +55,7 @@ const Settings = () => { {/* Settings Options */}

계정

- navigate('/profile-management')} /> + navigate('/profile-management')} /> navigate('/notification-settings')} />
@@ -75,4 +78,5 @@ const Settings = () => {
; }; -export default Settings; \ No newline at end of file + +export default Settings;