/** * Feed sub-routes layout — native Stack for /(app)/feed/[id] and * /(app)/feed/tag/[tag]. The tab root itself (app/(app)/feed.tsx) lives * OUTSIDE this folder so it keeps the outer Slot-level navigation. * * Why a Stack here? AnimatedSlot in the parent is stack-less; without * this nested Stack, `router.back()` from a post detail / hashtag feed * couldn't find its caller. */ import React from 'react'; import { Stack } from 'expo-router'; export default function FeedLayout() { return ( ); }