mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
13 lines
258 B
TypeScript
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;
|