Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
119
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 29 lines 646 B view raw
1import {type JSX} from 'react' 2 3import {Header} from '#/components/Layout' 4 5/** 6 * Legacy ViewHeader component. Use Layout.Header going forward. 7 * 8 * @deprecated use `Layout.Header` from `#/components/Layout.tsx` 9 */ 10export function ViewHeader({ 11 title, 12 renderButton, 13}: { 14 title: string 15 subtitle?: string 16 showOnDesktop?: boolean 17 showBorder?: boolean 18 renderButton?: () => JSX.Element 19}) { 20 return ( 21 <Header.Outer> 22 <Header.BackButton /> 23 <Header.Content> 24 <Header.TitleText>{title}</Header.TitleText> 25 </Header.Content> 26 <Header.Slot>{renderButton?.() ?? null}</Header.Slot> 27 </Header.Outer> 28 ) 29}