6 ms·
Everybody makes state management hard. All you need is a simple layer to make your typed api calls. export const ApiService = { return { getSomeStuff:
by ricksharp 6y ago
Everybody makes state management hard.
All you need is a simple layer to make your typed api calls.
export const ApiService = {
return {
getSomeStuff: async () => ...,
postSomething: ...,
etc,
};
}