import { FunctionComponent } from "preact";
interface AppWrapperProps {
Component: FunctionComponent
}
export const AppWrapper = ({ Component }: AppWrapperProps) => {
return (
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Infinity Beyond</title>
</head>
<body>
<Component />
</body>
</html>
);
};