import { useRouter } from "expo-router"; import { BackButton } from ".."; export default function BackButtonFromNotification({ from, category, }: { from: string; category?: string; }) { const router = useRouter(); return ( <> { if (from === "notifications") { router.replace(`/notifications?category=${category}`); } else { if (from) { router.replace(`/${from}` as any); } else { router.navigate("/home"); } } }} /> ); }