aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(editor)/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/(editor)/layout.tsx')
-rw-r--r--apps/web/app/(editor)/layout.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/web/app/(editor)/layout.tsx b/apps/web/app/(editor)/layout.tsx
new file mode 100644
index 00000000..1bf97715
--- /dev/null
+++ b/apps/web/app/(editor)/layout.tsx
@@ -0,0 +1,12 @@
+import "./styles/prosemirror.css";
+import "./styles/globals.css"
+import type { ReactNode } from "react";
+
+
+export default function RootLayout({ children }: { children: ReactNode }) {
+ return (
+ <div className="dark">
+ {children}
+ </div>
+ );
+}