MCPcopy Create free account
hub / github.com/apollographql/fullstack-tutorial / HeaderProps

Interface HeaderProps

final/client/src/components/header.tsx:21–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected