forked from Transparency/kgroad-frontend2
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
"use client";
|
|
|
|
import NotFound from "@/widgets/NotFound/NotFound";
|
|
import "../globals.scss";
|
|
import "@/shared/fonts/fonts.scss";
|
|
|
|
export default function NotFoundPage() {
|
|
return <NotFound />;
|
|
}
|