mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|