15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { AppProps } from "$fresh/server.ts";
|
|
|
|
import { Head } from "$fresh/runtime.ts";
|
|
export default function App({ Component }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<link href="/global.css" rel="stylesheet" />
|
|
<link href="/prism-material-dark.css" rel="stylesheet" />
|
|
</Head>
|
|
<Component />
|
|
</>
|
|
);
|
|
}
|