import type { Profile } from "../../types/profile"; export type HeaderProps = { profile: Profile; }; function Header(props: HeaderProps) { return ( <>
@{props.profile.handle}
Rocksky
); } export default Header;