Files
ausgaben-next/app/layout.tsx

22 lines
395 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Ausgaben - Log",
description: "Ausgaben-Tracking Anwendung",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de">
<body className="antialiased">
{children}
</body>
</html>
);
}