mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 13:50:38 +00:00
14 lines
245 B
TypeScript
14 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>
|
|
);
|
|
}
|