import { observer } from "mobx-react-lite"; import { PlusIcon } from "lucide-react"; // hooks import { useApplication } from "hooks/store"; // components import { NewEmptyState } from "components/common/new-empty-state"; // assets import emptyIssue from "public/empty-state/empty_issues.webp"; import { EProjectStore } from "store_legacy/command-palette.store"; export const ProjectEmptyState: React.FC = observer(() => { // store hooks const { commandPalette: commandPaletteStore, eventTracker: { setTrackElement }, } = useApplication(); return (
, onClick: () => { setTrackElement("PROJECT_EMPTY_STATE"); commandPaletteStore.toggleCreateIssueModal(true, EProjectStore.PROJECT); }, }} />
); });