Skip to content

Instantly share code, notes, and snippets.

@whisher
Created September 30, 2018 17:24
Show Gist options
  • Save whisher/d30f5182f4e638db69efa94d411868f8 to your computer and use it in GitHub Desktop.
Save whisher/d30f5182f4e638db69efa94d411868f8 to your computer and use it in GitHub Desktop.
HOC
import React, { Component } from 'react';
const asyncComponent = (importComponent) => {
return class extends Component {
state = {
component: null
}
componentDidMount () {
importComponent()
.then(cmp => {
this.setState({component: cmp.default});
});
}
render () {
const C = this.state.component;
return C ? <C {...this.props} /> : null;
}
}
}
export default asyncComponent;
USAGE
const AsyncNewPost = asyncComponent(() => {
return import('./NewPost/NewPost');
});
<Route path="/new-post" component={AsyncNewPost} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment