• Feb 21, 2026 mobx quick start guide supercharge the client sta ed data that update automatically when their dependencies change. ```javascript import { makeAutoObservable } from "mobx"; class TodoStore { todos = []; constructor() { makeAutoObservable(this); } get completedCount() { return this.todos.filter(todo By Winona Mraz-Schoen