1
0
Fork 0
freesewing/sites/shared/hooks/use-view.mjs

9 lines
187 B
JavaScript
Raw Normal View History

import { useAtom } from 'jotai'
import { atomWithHash } from 'jotai-location'
const viewAtom = atomWithHash('view', 'draft')
export const useView = () => {
return useAtom(viewAtom)
}