Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function ppHOC(WrappedComponent) {
  2. return class PP extends React.Component {
  3. render() {
  4. return <WrappedComponent {...this.props}/>
  5. }
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement