Created
December 23, 2016 10:00
-
-
Save shotaK/a22950b5bc18fc6cf7b6f47a879462c9 to your computer and use it in GitHub Desktop.
Stackoverflow
This file contains hidden or 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
<!-- language: lang-js --> | |
import React, {Component, PropTypes} from 'react'; | |
import ChildComp from './child-comp'; | |
class Comp extends Component { | |
render() { | |
const { Wrapper } = this.props; | |
return ( | |
<Wrapper> | |
<ChildComp /> | |
</Wrapper> | |
); | |
} | |
} | |
Comp.propTypes = {}; | |
export default Comp; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment