Initial commit.
This commit is contained in:
commit
1f90ca2575
63 changed files with 4059 additions and 0 deletions
20
stores/BookmarksStore.js
Normal file
20
stores/BookmarksStore.js
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* BookmarksStore
|
||||
*
|
||||
* Exactly what it sounds like.
|
||||
*
|
||||
* @copyright Ryan McGrath 2018
|
||||
*/
|
||||
|
||||
import moment from 'moment';
|
||||
import {observable, action, runInAction} from 'mobx';
|
||||
|
||||
class Store {
|
||||
@observable bookmarks;
|
||||
|
||||
constructor() {
|
||||
this.bookmarks = [];
|
||||
}
|
||||
};
|
||||
|
||||
export default new Store();
|
||||
Reference in a new issue