import SupportActions from '../actions/SupportActions' import alt from '../alt' export default alt.createStore(class SupportStore { constructor() { this.bindActions(SupportActions) this.isSupported = true } onNoSupport() { this.isSupported = false } }, 'SupportStore')