7 lines
239 B
JavaScript
7 lines
239 B
JavaScript
// __SDEFILE__ - This file is a dependency for the stand-alone environment
|
|
import { useAtom } from 'jotai'
|
|
import { atomWithHash } from 'jotai-location'
|
|
|
|
const idAtom = atomWithHash('id', null)
|
|
|
|
export const useId = () => useAtom(idAtom)
|