Skip to content

Instantly share code, notes, and snippets.

import { useReducer, useEffect } from 'react';
type InitialState<D, E> = {
isLoading: boolean;
data: D | null;
error: E | null;
};
type LoadingAction = {
type: 'LOADING';