mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02:00
15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
import Section from "../components/Section.js";
|
|
import { usePageTitle } from "../hooks.js";
|
|
import { t } from "../i18n.js";
|
|
import "./_404.css";
|
|
|
|
export function NotFound() {
|
|
usePageTitle(t("404.title"));
|
|
|
|
return (
|
|
<Section title={t("404.title")} className="section-404">
|
|
{t("404.description")}
|
|
</Section>
|
|
);
|
|
}
|