| 4 | import tinyWebPLogo from "../assets/tinywebp_logo.webp"; |
| 5 | |
| 6 | interface HeaderProps { |
| 7 | theme: 'light' | 'dark'; |
| 8 | toggleTheme: () => void; |
| 9 | } |
| 10 | |
| 11 | const Header: React.FC<HeaderProps> = ({ theme, toggleTheme }) => { |
| 12 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected