Skip to content

Instantly share code, notes, and snippets.

@shotaK
Created December 23, 2016 10:00
Show Gist options
  • Save shotaK/a22950b5bc18fc6cf7b6f47a879462c9 to your computer and use it in GitHub Desktop.
Save shotaK/a22950b5bc18fc6cf7b6f47a879462c9 to your computer and use it in GitHub Desktop.
Stackoverflow
<!-- 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