bobflux-monitor
Version:
Component for time travelling in bobflux/fun-model application state history.
21 lines (18 loc) • 436 B
text/typescript
import * as f from 'fun-model';
export interface IAppState {
counter: number;
date: Date;
popup: () => void;
history: number[];
}
export const createDefaultState = (): IAppState => {
return {
counter: 0,
date: new Date(Date.now()),
popup: () => alert('Current value is 0.'),
history: [0]
};
};
export const appCursor: f.ICursor<IAppState> = {
key: ''
};