mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
cd5e5b96da
* feat: init mobx and issue filter * feat: Implemented list and kanban views in plane space and integrated mobx. * feat: updated store type check
21 lines
487 B
TypeScript
21 lines
487 B
TypeScript
"use client";
|
|
|
|
// root styles
|
|
import "styles/globals.css";
|
|
// mobx store provider
|
|
import { MobxStoreProvider } from "lib/mobx/store-provider";
|
|
import MobxStoreInit from "lib/mobx/store-init";
|
|
|
|
const RootLayout = ({ children }: { children: React.ReactNode }) => (
|
|
<html lang="en">
|
|
<body className="antialiased w-100">
|
|
<MobxStoreProvider>
|
|
<MobxStoreInit />
|
|
<main>{children}</main>
|
|
</MobxStoreProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
|
|
export default RootLayout;
|