Leaflet Blog in Deno Fresh
1import { type PageProps } from "$fresh/server.ts";
2export default function App({ Component }: PageProps) {
3 return (
4 <html>
5 <head>
6 <meta charset="utf-8" />
7 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8 <title>blog</title>
9 <link rel="stylesheet" href="/styles.css" />
10 </head>
11 <body>
12 <Component />
13 </body>
14 </html>
15 );
16}