···11+import {type ButtonProps} from '#/components/Button'
22+import {Header} from '#/components/Layout'
33+44+// TEMP: Web needs a much more comprehensive layout change to support the new design
55+// so to do this incrementally, we'll do native only and migrate to web later
66+77+export const Slot = Header.Slot
88+99+export function Outer({}: {children: React.ReactNode}) {
1010+ return null
1111+}
1212+1313+export function Content({}: {children?: React.ReactNode}) {
1414+ return null
1515+}
1616+1717+export function Logo() {
1818+ return null
1919+}
2020+2121+export function BackButton({}: Partial<ButtonProps>) {
2222+ return null
2323+}