Files
deno/fresh-project/routes/_app.tsx
T
2025-10-25 21:17:18 +02:00

17 lines
366 B
TypeScript

import { define } from "../utils.ts";
export default define.page(function App({ Component }) {
return (
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fresh-project</title>
</head>
<body>
<Component />
</body>
</html>
);
});