This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
'use strict'; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.getForceUpdate = exports.createProxy = undefined; |
|
|
|
var _supportsProtoAssignment = require('./supportsProtoAssignment'); |
|
|
|
var _supportsProtoAssignment2 = _interopRequireDefault(_supportsProtoAssignment); |
|
|
|
var _createClassProxy = require('./createClassProxy'); |
|
|
|
var _createClassProxy2 = _interopRequireDefault(_createClassProxy); |
|
|
|
var _reactDeepForceUpdate = require('react-deep-force-update'); |
|
|
|
var _reactDeepForceUpdate2 = _interopRequireDefault(_reactDeepForceUpdate); |
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
|
|
|
if (!(0, _supportsProtoAssignment2.default)()) { |
|
console.warn('This JavaScript environment does not support __proto__. ' + 'This means that react-proxy is unable to proxy React components. ' + 'Features that rely on react-proxy, such as react-transform-hmr, ' + 'will not function as expected.'); |
|
} |
|
|
|
exports.createProxy = _createClassProxy2.default; |
|
exports.getForceUpdate = _reactDeepForceUpdate2.default; |