sparkast/app/[locale]/not-found.tsx
2024-03-31 00:56:04 +08:00

12 lines
220 B
TypeScript

"use client";
import { useTranslations } from "next-intl";
export default function NotFound() {
const t = useTranslations("404");
return (
<div>
<h1>{t('title')}</h1>
</div>
);
}