Skip to content

Instantly share code, notes, and snippets.

@VinixGonzalez
Last active November 24, 2019 16:15
Show Gist options
  • Save VinixGonzalez/5110f54aa413df2775f48f765bc7cd35 to your computer and use it in GitHub Desktop.
Save VinixGonzalez/5110f54aa413df2775f48f765bc7cd35 to your computer and use it in GitHub Desktop.
Mobx RootStore do exemplo
import { observable, action, computed } from 'mobx';
class RootStore {
@observable usuarioLogado = 'Vinicius Gonzalez';
@observable listaUsuarios = [];
@action addUsuario = (usuario) => {
this.listaUsuarios.push(usuario);
}
@computed get totalUsuarios() {
return this.usersList.length;
}
}
export default new RootStore();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment