JotaiでGET
単純な実装
code:ts
const idAtom = atom(1);
const dataAtom = atom(async (get) => {
const id = get(idAtom);
const res = await fetch(https://reqres.in/api/posts/${id});
const data = await res.json();
return data;
});
しかしcacheされないので、idを1→2→1のように変えた時に、
2回目の1のときも再度fetchされてしまう