You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. import { useHooksStore } from '@/app/components/workflow/hooks-store'
  2. export const useDSL = () => {
  3. const exportCheck = useHooksStore(s => s.exportCheck)
  4. const handleExportDSL = useHooksStore(s => s.handleExportDSL)
  5. return {
  6. exportCheck,
  7. handleExportDSL,
  8. }
  9. }