Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

use-DSL.ts 277B

5 månader sedan
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. }