import { useUpdateAtom } from 'jotai/utils.cjs'
const postData = atom((get) => {
const id = get(postId)
if (isSSR || prefetchedPostData[id]) {
return prefetchedPostData[id] || EMPTY_POST_DATA;
}
return fetchData(id) // returns a promise
})
Check the following examples.