create project

This commit is contained in:
ismailsosic
2022-12-27 12:05:56 +01:00
parent 2a33a2d3de
commit cd2143287c
16035 changed files with 2489703 additions and 0 deletions

30
kitabcitab/node_modules/next/dist/esm/pages/_app.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
import _async_to_generator from "@swc/helpers/src/_async_to_generator.mjs";
import React from 'react';
import { loadGetInitialProps } from '../shared/lib/utils';
function appGetInitialProps(_) {
return _appGetInitialProps.apply(this, arguments);
}
function _appGetInitialProps() {
_appGetInitialProps = /**
* `App` component is used for initialize of pages. It allows for overwriting and full control of the `page` initialization.
* This allows for keeping state between navigation, custom error handling, injecting additional data.
*/ _async_to_generator(function*({ Component , ctx }) {
const pageProps = yield loadGetInitialProps(Component, ctx);
return {
pageProps
};
});
return _appGetInitialProps.apply(this, arguments);
}
var _Component;
class App extends (_Component = React.Component) {
render() {
const { Component , pageProps } = this.props;
return /*#__PURE__*/ React.createElement(Component, Object.assign({}, pageProps));
}
}
App.origGetInitialProps = appGetInitialProps;
App.getInitialProps = appGetInitialProps;
export { App as default };
//# sourceMappingURL=_app.js.map