48c1e2b24a79436da592adfe5b6b8a9b3dac900c
[arvados-workbench2.git] / src / store / resources-data / resources-data.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ResourceData, ResourcesDataState } from "~/store/resources-data/resources-data-reducer";
6
7 export const getResourceData = (id: string) =>
8     (state: ResourcesDataState): ResourceData | undefined => state[id];