Remove mobx

This commit is contained in:
Aarni Halinen
2020-12-02 01:23:50 +02:00
parent bd2a2f653e
commit b444c8e2f6
3 changed files with 0 additions and 39 deletions
-24
View File
@@ -12670,30 +12670,6 @@
}
}
},
"mobx": {
"version": "5.9.4",
"resolved": "https://registry.npmjs.org/mobx/-/mobx-5.9.4.tgz",
"integrity": "sha512-L9JjTX2rtQUAhCIgnHokfntNOsF14uioT9LqStf6Mya+16j56ZBe21E8Y9V59tfr2aH2kLQPD10qtCJXBuTAxw=="
},
"mobx-react": {
"version": "5.4.4",
"resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-5.4.4.tgz",
"integrity": "sha512-2mTzpyEjVB/RGk2i6KbcmP4HWcAUFox5ZRCrGvSyz49w20I4C4qql63grPpYrS9E9GKwgydBHQlA4y665LuRCQ==",
"requires": {
"hoist-non-react-statics": "^3.0.0",
"react-lifecycles-compat": "^3.0.2"
},
"dependencies": {
"hoist-non-react-statics": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz",
"integrity": "sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==",
"requires": {
"react-is": "^16.7.0"
}
}
}
},
"module-to-cdn": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/module-to-cdn/-/module-to-cdn-3.1.2.tgz",
-2
View File
@@ -119,8 +119,6 @@
"date-fns": "2.0.0-alpha.27",
"js-cookie": "2.2.0",
"lodash": "4.17.20",
"mobx": "5.9.4",
"mobx-react": "5.4.4",
"normalize.css": "8.0.1",
"query-string": "6.5.0",
"react-beautiful-dnd": "10.1.1",
-13
View File
@@ -1,13 +0,0 @@
import { observable, action } from "mobx";
import { observer } from "mobx-react";
class AppStore {
@observable counter = 0;
@action.bound
increment() {
this.counter += 1;
}
}
export default new AppStore();