-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app.js
69 lines (49 loc) · 1.44 KB
/
_app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"use strict";
(() => {
var exports = {};
exports.id = 888;
exports.ids = [888];
exports.modules = {
/***/ 689:
/***/ ((module) => {
module.exports = require("react");
/***/ }),
/***/ 997:
/***/ ((module) => {
module.exports = require("react/jsx-runtime");
/***/ }),
/***/ 308:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);
// EXPORTS
__webpack_require__.d(__webpack_exports__, {
"default": () => (/* reexport */ CustomApp)
});
// EXTERNAL MODULE: external "react/jsx-runtime"
var jsx_runtime_ = __webpack_require__(997);
// EXTERNAL MODULE: external "react"
var external_react_ = __webpack_require__(689);
;// CONCATENATED MODULE: external "next/app.js"
const app_js_namespaceObject = require("next/app.js");
;// CONCATENATED MODULE: ../app.js
class CustomApp extends app_js_namespaceObject {
render() {
const { Component } = this.props;
const props = this.props.pageProps;
return(/*#__PURE__*/ jsx_runtime_.jsx(Component, {
...props
}));
}
};
;// CONCATENATED MODULE: ./pages/_app.js
/***/ })
};
;
// load runtime
var __webpack_require__ = require("../webpack-runtime.js");
__webpack_require__.C(exports);
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
var __webpack_exports__ = (__webpack_exec__(308));
module.exports = __webpack_exports__;
})();