Created
January 10, 2019 20:34
-
-
Save msmith-techempower/42d42c548f0987fbc8989cd041c3dd17 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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