Created
October 23, 2018 06:45
-
-
Save whisher/c533fc8abca8496a8f0dc65a4be8f28a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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