CollectionNew scene

This commit is contained in:
Tom Moor
2017-07-09 10:27:29 -07:00
parent 98da54d82a
commit f456dc6b6a
12 changed files with 164 additions and 72 deletions

View File

@ -1,7 +1,7 @@
// @flow
import { observable, action } from 'mobx';
class UiStore {
class ErrorsStore {
@observable errors = observable.array([]);
/* Actions */
@ -15,4 +15,4 @@ class UiStore {
};
}
export default UiStore;
export default ErrorsStore;