forked from github/plane
cd5e5b96da
* feat: init mobx and issue filter * feat: Implemented list and kanban views in plane space and integrated mobx. * feat: updated store type check
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
"use client";
|
|
|
|
// mobx react lite
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
export const NavbarIssueView = observer(() => {
|
|
const store: RootStore = useMobxStore();
|
|
|
|
return <div>View</div>;
|
|
});
|