Files
leistungsbilanz-ts/src/app/layout.tsx
T
2026-04-30 21:37:21 +02:00

16 lines
367 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Leistungsbilanz",
description: "Leistungsbilanz fuer elektrische Verbraucher",
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="de">
<body>{children}</body>
</html>
);
}