import React, { FC, createContext } from "react"; // mobx store import { GanttStore } from "store/issue/issue_gantt_view.store"; let ganttViewStore = new GanttStore(); export const GanttStoreContext = createContext(ganttViewStore); const initializeStore = () => { const newGanttViewStore = ganttViewStore ?? new GanttStore(); if (typeof window === "undefined") return newGanttViewStore; if (!ganttViewStore) ganttViewStore = newGanttViewStore; return newGanttViewStore; }; type GanttStoreProviderProps = { children: React.ReactNode; }; export const GanttStoreProvider: FC = ({ children }) => { const store = initializeStore(); return {children}; };