20 lines
446 B
JavaScript
20 lines
446 B
JavaScript
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>
|
||
);
|
||
}
|