1
0
Fork 0
freesewing/sites/shared/hooks/use-pattern-settings.mjs
2023-06-18 11:30:11 +02:00

6 lines
216 B
JavaScript

import { useAtom } from 'jotai'
import { atomWithHash } from 'jotai-location'
const baseSettings = atomWithHash('settings', false, { delayInit: true })
export const usePatternSettings = () => useAtom(baseSettings)