Skip to content

Commit a70dcf8

Browse files
Create layouts.tsx
1 parent 85d51f4 commit a70dcf8

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Public/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)