_app.tsx (409B)
1 import { PageProps } from "$fresh/src/server/types.ts"; 2 3 export default function App({ Component }: PageProps) { 4 return ( 5 <html lang="en"> 6 <head> 7 <meta charset="utf-8" /> 8 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 9 <link rel="stylesheet" href="/pico.min.css" /> 10 </head> 11 <body> 12 <Component /> 13 </body> 14 </html> 15 ); 16 }