mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 04:22:12 +00:00
12 lines
163 B
JavaScript
12 lines
163 B
JavaScript
export const runtime = 'edge';
|
|
|
|
const Layout = ({ children }) => {
|
|
return (
|
|
<html>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|