Skip to content

Instantly share code, notes, and snippets.

View ItamarShDev's full-sized avatar

itamar sharify ItamarShDev

View GitHub Profile
@ItamarShDev
ItamarShDev / Store.js
Created August 7, 2018 09:28
The mobx problem example
import { observable, action } from 'mobx';
class Store {
definition = null;
@observable settings;
@observable device;
//change to objects
@observable loopIndex;
@observable flowIndex;