(info)
| 33 | const [state, actualDispatch] = useReducer(globalReducer, getDefaultGlobalState()) |
| 34 | |
| 35 | const dispatch: IGlobalDispatch = (info) => { |
| 36 | actualDispatch([info]) |
| 37 | } |
| 38 | |
| 39 | const toggleSettingPanel = () => { |
| 40 | setShowSettingPanel(!showSettingPanel) |