Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 946x 946x 946x 1032x 1111x | import {
CompoundListItem,
useCoreCompoundsListQuery,
} from "@/api/apiStore.gen.ts";
import { useCurrentObjectId } from "./flowsheetObjects";
export function useListCompounds(): CompoundListItem[] {
const currentObjectId = useCurrentObjectId();
const { data: compounds } = useCoreCompoundsListQuery({
simulationObjectId: currentObjectId,
});
return compounds || [];
}
|