UNPKG

lazy-route

Version:

Lazy / async route loading for React Router 4

28 lines (18 loc) 658 B
# lazy-route - Lazy route loading for React Router 4 through System.import #### Dependencies and requirements This component only works with React Router 4 and Webpack 2 (because of System.import). #### Usage Installation: `npm install lazy-route` or `yarn add lazy-route` How to use with React Router 4: ```javascript import {Match} from 'react-router' import LazyRoute from 'lazy-route' <Match pattern="/myroute" render={(props) => <LazyRoute {...props} component={import('./myComponent')} />} /> ``` #### Upcoming features The component works, but I have yet to add tests and some polish to it, the plan is to add a customizable loader etc.