Last active
July 27, 2020 19:52
-
-
Save Heolink/58055ac7cc28c05796ab35e9e87aebc2 to your computer and use it in GitHub Desktop.
test react
This file contains hidden or 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 {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