import { FC, ReactNode } from "react"
type HtmlProps = {
body: ReactNode;
head: ReactNode;
scripts: string[];
};
const Html: FC = ({ body, head, scripts }) => {
return (
My App
{head}
{scripts.map((script, index) => (
))}
{body}
);
};
export { Html };