2023-09-29 16:01:27 +02:00
|
|
|
// __SDEFILE__ - This file is a dependency for the stand-alone environment
|
2023-06-18 11:30:11 +02:00
|
|
|
import { useAtom } from 'jotai'
|
|
|
|
import { atomWithHash } from 'jotai-location'
|
|
|
|
|
|
|
|
const baseSettings = atomWithHash('settings', false, { delayInit: true })
|
|
|
|
|
|
|
|
export const usePatternSettings = () => useAtom(baseSettings)
|