plane/apps/space/app/layout.tsx
2023-08-08 12:55:42 +05:30

13 lines
258 B
TypeScript

// root styles
import "styles/globals.css";
const RootLayout = ({ children }: { children: React.ReactNode }) => (
<html lang="en">
<body className="antialiased w-100">
<main>{children}</main>
</body>
</html>
);
export default RootLayout;