junk/entemu/routes/_app.tsx

18 lines
424 B
TypeScript
Raw Normal View History

2024-12-17 15:33:24 +00:00
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>
);
}