Skip to content

Instantly share code, notes, and snippets.

View geekyarthurs's full-sized avatar

Mahesh C. Regmi geekyarthurs

View GitHub Profile
@geekyarthurs
geekyarthurs / useUserReducer.ts
Created November 2, 2020 16:32 — forked from schettino/useUserReducer.ts
Better Reducers with React and Typescript 3.4
import { useReducer } from 'react'
export function updateName(name: string) {
return <const>{
type: 'UPDATE_NAME',
name
}
}
export function addPoints(points: number) {