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 mobx from "mobx" | |
| import store from "store" | |
| export default function(_this) { | |
| let firstRun = true | |
| // will run on change | |
| mobx.autorun(() => { | |
| // on load check if there's an existing store on localStorage and extend the store | |
| if (firstRun) { |