import { BackButton, StackCustom, TextCustom, ViewWrapper } from "@/components"; import AppHeader from "@/components/_ShareComponent/AppHeader"; import { router, Stack } from "expo-router"; export default function NotFoundScreen() { // Setelah (dengan penanganan): const handleBack = () => { if (router.canGoBack()) { router.back(); } else { // Alternatif action ketika tidak bisa kembali router.replace('/'); // atau navigasi ke halaman default } }; return ( <> handleBack()} />} /> }} /> 404 Sorry, Page Not Found ); }