Skip to content

Instantly share code, notes, and snippets.

@Heolink
Last active July 27, 2020 19:52
Show Gist options
  • Save Heolink/58055ac7cc28c05796ab35e9e87aebc2 to your computer and use it in GitHub Desktop.
Save Heolink/58055ac7cc28c05796ab35e9e87aebc2 to your computer and use it in GitHub Desktop.
test react
import {useReducer} from 'react';
export const initialState = {isShowing: false};
export function reducer(state, action) {
switch (action.type) {
case 'toggle':
return {isShowing: !state.isShowing};
default:
throw new Error();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment