import { Switch } from '@/components/ui/switch'; import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import { BORDER_RADIUS } from '@/theme/globals'; import React, { useState } from 'react'; export function SwitchSettings() { const card = useColor('card'); const [notifications, setNotifications] = useState(true); const [darkMode, setDarkMode] = useState(false); const [location, setLocation] = useState(true); const [analytics, setAnalytics] = useState(false); return ( ); }