5 lines
77 B
TypeScript
5 lines
77 B
TypeScript
type State = {
|
|
count: number;
|
|
};
|
|
const initialState: State = { count: 0 };
|