Files
real-time-fund/app/layout.jsx
2026-01-31 21:04:50 +08:00

20 lines
446 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}