2024-03-06 15:17:38 +00:00
|
|
|
import React from "react";
|
2023-10-18 07:02:02 +00:00
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// mobx store
|
2024-03-06 13:09:14 +00:00
|
|
|
import { EIssuesStoreType } from "constants/issue";
|
2023-11-27 08:45:33 +00:00
|
|
|
import { ProjectIssueQuickActions } from "../../quick-action-dropdowns";
|
2024-03-06 13:09:14 +00:00
|
|
|
import { BaseSpreadsheetRoot } from "../base-spreadsheet-root";
|
2023-10-18 07:02:02 +00:00
|
|
|
|
2024-03-06 15:17:38 +00:00
|
|
|
export const ProjectSpreadsheetLayout: React.FC = observer(() => (
|
|
|
|
<BaseSpreadsheetRoot QuickActions={ProjectIssueQuickActions} storeType={EIssuesStoreType.PROJECT} />
|
|
|
|
));
|