mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
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>
|
|
);
|
|
}
|