Mastermindzh 8496f5cfbe Moved examples into example directory
Moved routes to separate file
Used route constants
2022-07-26 10:32:11 +02:00

5 lines
92 B
TypeScript

export interface CounterState {
value: number;
status: "idle" | "loading" | "failed";
}