()
| 14 | }, [theme]); |
| 15 | |
| 16 | const toggleTheme = () => { |
| 17 | setTheme(prev => prev === 'light' ? 'dark' : 'light'); |
| 18 | }; |
| 19 | |
| 20 | return ( |
| 21 | <div className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-800 flex flex-col"> |
nothing calls this directly
no outgoing calls
no test coverage detected