import '../style.scss'
export default function Layout({
children,
}) {
return <html lang="en">
<head />
<body>{children}</body>
</html>
}