9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
import type { Metadata } from "next";
|
|
import { WarningsPageContent } from "@/components/warnings/warnings-page-content";
|
|
|
|
export const metadata: Metadata = { title: "Ostrzeżenia / Warnings" };
|
|
|
|
export default function WarningsPage() {
|
|
return <WarningsPageContent />;
|
|
}
|