svrjs-nextjs-website/app/(auth)/admin/changelogs/layout.tsx

10 lines
218 B
TypeScript
Raw Normal View History

2024-07-28 16:47:09 +02:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Admin // Changelogs"
2024-07-28 16:47:09 +02:00
};
export default function logPages({ children }: { children: React.ReactNode }) {
return <>{children}</>;
2024-07-28 16:47:09 +02:00
}