1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { getProperty } from "store/properties/properties";
6 import { RootState } from "store/store";
8 export const PROJECT_PANEL_CURRENT_UUID = "projectPanelCurrentUuid";
9 export const IS_PROJECT_PANEL_TRASHED = "isProjectPanelTrashed";
11 export const getProjectPanelCurrentUuid = (state: RootState) => getProperty<string>(PROJECT_PANEL_CURRENT_UUID)(state.properties);