douyintest/app/layout.jsx

18 lines
407 B
React
Raw Normal View History

2024-07-11 21:23:12 +08:00
import "./globals.css";
2024-07-24 19:44:27 +08:00
import { Suspense } from "react";
2024-07-11 21:23:12 +08:00
export const metadata = {
title: "省身测试",
description: "你了解自己吗?快来测一测吧!",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className="box-border min-h-screen flex flex-col items-center">
2024-07-24 19:44:27 +08:00
<Suspense>{children}</Suspense>
2024-07-11 21:23:12 +08:00
</body>
</html>
);
}