7 lines
216 B
JavaScript
7 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)
|