mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
299 B
TypeScript
14 lines
299 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 NavbarSearch = observer(() => {
|
||
|
const store: RootStore = useMobxStore();
|
||
|
|
||
|
return <div> </div>;
|
||
|
});
|