zed/styles/theme-tool/app/layout.tsx
2023-02-09 00:09:44 -05:00

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>
);
}