I am curious as to how mobx works under the hood.
If I have a component that is both an observer and contains observables:
@observer
export default class Form extends Component {
@observable submitted = false;
@action.bound
submit() {
}
}
How does mobx cause a re-render without using setState or does it use setState?