Initial commit.

This commit is contained in:
Ryan McGrath 2018-04-05 15:17:53 -04:00
commit 1f90ca2575
No known key found for this signature in database
GPG key ID: 811674B62B666830
63 changed files with 4059 additions and 0 deletions

20
stores/SettingsStore.js Normal file
View file

@ -0,0 +1,20 @@
/**
* SettingsStore
*
* Exactly what it sounds like.
*
* @copyright Ryan McGrath 2018
*/
import moment from 'moment';
import {observable, action, runInAction} from 'mobx';
class Store {
@observable settings;
constructor() {
this.settings = {};
}
};
export default new Store();