forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {type ButtonProps} from '#/components/Button'
2import {Header} from '#/components/Layout'
3
4// TEMP: Web needs a much more comprehensive layout change to support the new design
5// so to do this incrementally, we'll do native only and migrate to web later
6
7export const Slot = Header.Slot
8
9export function Outer({}: {children: React.ReactNode}) {
10 return null
11}
12
13export function Content({}: {children?: React.ReactNode}) {
14 return null
15}
16
17export function Logo() {
18 return null
19}
20
21export function BackButton({}: Partial<ButtonProps>) {
22 return null
23}