選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

use-set-workflow-vars-with-value.ts 228B

123456789
  1. import { useHooksStore } from '@/app/components/workflow/hooks-store'
  2. export const useSetWorkflowVarsWithValue = () => {
  3. const fetchInspectVars = useHooksStore(s => s.fetchInspectVars)
  4. return {
  5. fetchInspectVars,
  6. }
  7. }