Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

use-inspect-vars-crud.ts 437B

12345678910111213141516
  1. import { useStore } from '@/app/components/workflow/store'
  2. import { useInspectVarsCrudCommon } from '../../workflow/hooks/use-inspect-vars-crud-common'
  3. import { useConfigsMap } from './use-configs-map'
  4. export const useInspectVarsCrud = () => {
  5. const appId = useStore(s => s.appId)
  6. const configsMap = useConfigsMap()
  7. const apis = useInspectVarsCrudCommon({
  8. flowId: appId,
  9. ...configsMap,
  10. })
  11. return {
  12. ...apis,
  13. }
  14. }