datajunction-ui 0.0.1-a86.dev0 → 0.0.1-a86.dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
* Asynchronously loads the component for the Node page
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import * as React from 'react';
|
|
6
5
|
import { lazyLoad } from '../../../utils/loadable';
|
|
7
6
|
|
|
8
|
-
export const
|
|
7
|
+
export const LazyAddEditNodePage = () => {
|
|
9
8
|
return lazyLoad(
|
|
10
9
|
() => import('./index'),
|
|
11
10
|
module => module.AddEditNodePage,
|
|
@@ -14,3 +13,7 @@ export const AddEditNodePage = () => {
|
|
|
14
13
|
},
|
|
15
14
|
)();
|
|
16
15
|
};
|
|
16
|
+
|
|
17
|
+
export const AddEditNodePage = (props) => {
|
|
18
|
+
return <LazyAddEditNodePage {...props} />;
|
|
19
|
+
};
|