Next.js
How to use Jotai with Next.js
You can't return promises in server side rendering
const postData = atom((get) => {
const id = get(postId)
if (isSSR || prefetchedPostData[id]) {
return prefetchedPostData[id] || EMPTY_POST_DATA
}
return fetchData(id) // returns a promise
})
Hydration is possible with care
Check the following examples.