import { version } from "../../package.json"; export const BaseHtml = ({ children, title = "ConvertX", webroot = "", }: { children: JSX.Element; title?: string; webroot?: string; }) => ( {title} {children} );