Skip to content

Commit 1ed80b4

Browse files
Create Layouts.tsx
1 parent bbb2b59 commit 1ed80b4

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Layouts.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { bootKernel } from "@/core/runtime";
2+
3+
bootKernel();
4+
5+
export default function RootLayout({
6+
children,
7+
}: {
8+
children: React.ReactNode;
9+
}) {
10+
return (
11+
<html lang="en">
12+
<body>{children}</body>
13+
</html>
14+
);
15+
}

0 commit comments

Comments
 (0)