| 19 | } |
| 20 | |
| 21 | interface HeaderProps { |
| 22 | image?: string | any; |
| 23 | children?: any; |
| 24 | } |
| 25 | |
| 26 | const Header: React.FC<HeaderProps> = ({ image, children = 'Space Explorer' }) => { |
| 27 | const email = window.atob(localStorage.getItem('token') as string); |
nothing calls this directly
no outgoing calls
no test coverage detected