Skip to content

Instantly share code, notes, and snippets.

@whisher
Created October 23, 2018 06:45
Show Gist options
  • Save whisher/c533fc8abca8496a8f0dc65a4be8f28a to your computer and use it in GitHub Desktop.
Save whisher/c533fc8abca8496a8f0dc65a4be8f28a to your computer and use it in GitHub Desktop.
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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment