Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msmith-techempower/42d42c548f0987fbc8989cd041c3dd17 to your computer and use it in GitHub Desktop.
Save msmith-techempower/42d42c548f0987fbc8989cd041c3dd17 to your computer and use it in GitHub Desktop.
import { useState } from "react";
export default function useAsyncReducer(reducer, initialState) {
const [state, setState] = useState(initialState);
async function dispatch(action) {
const newState = await reducer(state, action);
setState(newState);
}
return [state, dispatch];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment