Files
minimap/frontend/app/layout.tsx
zhangyonghao 8400fb6127 1
2026-03-20 23:09:51 +08:00

20 lines
421 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "交互式思维导图",
description: "基于 Next.js、FastAPI 和 SQLite 的思维导图 MVP",
};
type RootLayoutProps = {
children: React.ReactNode;
};
export default function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="zh-CN">
<body>{children}</body>
</html>
);
}