You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
485 B
14 lines
485 B
import React, { ComponentType } from "https://esm.sh/react@17.0.2";
|
|
|
|
export default function App({ Page, pageProps }: { Page: ComponentType<any>; pageProps: any }) {
|
|
return (
|
|
<main style={{ width: "100%", height: "100%" }}>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="stylesheet" href="./style/site.css" />
|
|
<link rel="stylesheet" href="./style/reset.css" />
|
|
</head>
|
|
<Page {...pageProps} />
|
|
</main>
|
|
);
|
|
}
|
|
|