mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-15 14:47:30 +00:00
15 lines
245 B
TypeScript
15 lines
245 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
export default function RootLayout({
|
||
|
children,
|
||
|
}: {
|
||
|
children: React.ReactNode;
|
||
|
}) {
|
||
|
return (
|
||
|
<html lang="en">
|
||
|
<head />
|
||
|
<body>{children}</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|