UNPKG

datajunction-ui

Version:

DataJunction Metrics Platform UI

17 lines (14 loc) 321 B
/** * Asynchronously loads the component for the Node page */ import * as React from 'react'; import { lazyLoad } from '../../../utils/loadable'; export const NodePage = props => { return lazyLoad( () => import('./index'), module => module.NodePage, { fallback: <div></div>, }, )(props); };