junk/entemu/routes/_app.tsx

17 lines
424 B
XML

import type { PageProps } from "fresh";
export default function App({ Component }: PageProps) {
return (
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>entemu</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<Component />
</body>
</html>
);
}