source: imaps-frontend/node_modules/react-use/lib/useError.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 470 bytes
RevLine 
[d565449]1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var react_1 = require("react");
4var useError = function () {
5 var _a = react_1.useState(null), error = _a[0], setError = _a[1];
6 react_1.useEffect(function () {
7 if (error) {
8 throw error;
9 }
10 }, [error]);
11 var dispatchError = react_1.useCallback(function (err) {
12 setError(err);
13 }, []);
14 return dispatchError;
15};
16exports.default = useError;
Note: See TracBrowser for help on using the repository browser.