9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
// __SDEFILE__ - This file is a dependency for the stand-alone environment
|
|
import { useAtom } from 'jotai'
|
|
import { atomWithHash } from 'jotai-location'
|
|
|
|
const viewAtom = atomWithHash('view', 'draft')
|
|
|
|
export const useView = () => {
|
|
return useAtom(viewAtom)
|
|
}
|