zed/styles/theme-tool/app/layout.tsx

15 lines
245 B
TypeScript
Raw Normal View History

2023-02-09 05:09:44 +00:00
import * as React from 'react';
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head />
<body>{children}</body>
</html>
);
}