Files
tabletten/app/layout.tsx
2026-03-12 09:11:43 +01:00

22 lines
391 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Tabletten-Übersicht",
description: "Verwaltung von Medikamenten und Tabletten",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
);
}