forked from zhangyonghao/minimap
20 lines
421 B
TypeScript
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>
|
|
);
|
|
}
|