add: 初始化基金估值页面
This commit is contained in:
19
app/layout.jsx
Normal file
19
app/layout.jsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import './globals.css';
|
||||
|
||||
export const metadata = {
|
||||
title: '实时基金估值',
|
||||
description: '输入基金编号添加基金,实时显示估值与前10重仓'
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
||||
</head>
|
||||
<body>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user