memento-dev/app/data/snippets/react/reducer/reducer-initial-state.ts

5 lines
77 B
TypeScript

type State = {
count: number;
};
const initialState: State = { count: 0 };