UNPKG

smartthings-phone-presence-sensor

Version:
12 lines (8 loc) 197 B
import { observable, action } from 'mobx'; export class TabsStore { @observable tabId = 'Info'; @action setTab(tabId) { this.tabId = tabId; } } export default new TabsStore();