Created
August 12, 2021 06:17
-
-
Save avilde/efe31cec1b151d21c4dabfd21b1d70e4 to your computer and use it in GitHub Desktop.
Mobx State Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { makeAutoObservable } from "mobx" | |
export class BalanceState { | |
balance = 1000 | |
constructor() { | |
makeAutoObservable(this) | |
} | |
add(value: number) { | |
this.balance = this.balance + value | |
} | |
withdraw(value: number) { | |
this.balance = this.balance - value | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment