|
1 | 1 | import React from "react"; |
2 | 2 | import lazyWithPreload from "./lazy-base"; |
3 | 3 |
|
4 | | -export const Registration = React.lazy(() => |
5 | | - import(/* webpackChunkName: 'Registration' */ "../registration"), |
| 4 | +export const Registration = React.lazy( |
| 5 | + () => import(/* webpackChunkName: 'Registration' */ "../registration"), |
6 | 6 | ); |
7 | | -export const Status = lazyWithPreload(() => |
8 | | - import(/* webpackChunkName: 'Status' */ "../status"), |
| 7 | +export const Status = lazyWithPreload( |
| 8 | + () => import(/* webpackChunkName: 'Status' */ "../status"), |
9 | 9 | ); |
10 | | -export const PasswordChange = React.lazy(() => |
11 | | - import(/* webpackChunkName: 'PasswordChange' */ "../password-change"), |
| 10 | +export const PasswordChange = React.lazy( |
| 11 | + () => import(/* webpackChunkName: 'PasswordChange' */ "../password-change"), |
12 | 12 | ); |
13 | | -export const MobilePhoneChange = React.lazy(() => |
14 | | - import(/* webpackChunkName: 'MobilePhoneChange' */ "../mobile-phone-change"), |
| 13 | +export const MobilePhoneChange = React.lazy( |
| 14 | + () => |
| 15 | + import( |
| 16 | + /* webpackChunkName: 'MobilePhoneChange' */ "../mobile-phone-change" |
| 17 | + ), |
15 | 18 | ); |
16 | | -export const PasswordReset = React.lazy(() => |
17 | | - import(/* webpackChunkName: 'PasswordReset' */ "../password-reset"), |
| 19 | +export const PasswordReset = React.lazy( |
| 20 | + () => import(/* webpackChunkName: 'PasswordReset' */ "../password-reset"), |
18 | 21 | ); |
19 | | -export const PasswordConfirm = React.lazy(() => |
20 | | - import(/* webpackChunkName: 'PasswordConfirm' */ "../password-confirm"), |
| 22 | +export const PasswordConfirm = React.lazy( |
| 23 | + () => import(/* webpackChunkName: 'PasswordConfirm' */ "../password-confirm"), |
21 | 24 | ); |
22 | | -export const MobilePhoneVerification = React.lazy(() => |
23 | | - import( |
24 | | - /* webpackChunkName: 'MobilePhoneVerification' */ "../mobile-phone-verification" |
25 | | - ), |
| 25 | +export const MobilePhoneVerification = React.lazy( |
| 26 | + () => |
| 27 | + import( |
| 28 | + /* webpackChunkName: 'MobilePhoneVerification' */ "../mobile-phone-verification" |
| 29 | + ), |
26 | 30 | ); |
27 | | -export const PaymentStatus = React.lazy(() => |
28 | | - import(/* webpackChunkName: 'PaymentStatus' */ "../payment-status"), |
| 31 | +export const PaymentStatus = React.lazy( |
| 32 | + () => import(/* webpackChunkName: 'PaymentStatus' */ "../payment-status"), |
29 | 33 | ); |
30 | | -export const PaymentProcess = React.lazy(() => |
31 | | - import(/* webpackChunkName: 'PaymentProcess' */ "../payment-process"), |
| 34 | +export const PaymentProcess = React.lazy( |
| 35 | + () => import(/* webpackChunkName: 'PaymentProcess' */ "../payment-process"), |
32 | 36 | ); |
33 | | -export const ConnectedDoesNotExist = React.lazy(() => |
34 | | - import(/* webpackChunkName: 'ConnectedDoesNotExist' */ "../404"), |
| 37 | +export const ConnectedDoesNotExist = React.lazy( |
| 38 | + () => import(/* webpackChunkName: 'ConnectedDoesNotExist' */ "../404"), |
35 | 39 | ); |
36 | | -export const DoesNotExist = React.lazy(() => |
37 | | - import(/* webpackChunkName: 'DoesNotExist' */ "../404/404"), |
| 40 | +export const DoesNotExist = React.lazy( |
| 41 | + () => import(/* webpackChunkName: 'DoesNotExist' */ "../404/404"), |
38 | 42 | ); |
0 commit comments