plane/apps/space/app/layout.tsx

13 lines
258 B
TypeScript
Raw Normal View History

2023-08-08 07:25:42 +00:00
// 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;