Explore, modify and call action functions on any mobx data models. Maybe useful for:
- Debugging
- Displaying/interacting with state model without having views implementation
Usage example:
import explore from 'mobx-state-explorer';
let todoList = new TodoList;
explore(todoList);
- Full example code: examples/todoList/index.ts
- Working demo