Skip to content

Instantly share code, notes, and snippets.

@techitesh
Created April 21, 2020 17:52
Show Gist options
  • Save techitesh/8fe40808c4aea74323cfa2ddd0ee7753 to your computer and use it in GitHub Desktop.
Save techitesh/8fe40808c4aea74323cfa2ddd0ee7753 to your computer and use it in GitHub Desktop.
React HOC
import React from 'react'
const WithHeaderFooter = (WrapperComponent, extraProps) => {
return (props) => {
return (
<>
<p>Header Component</p>
<WrapperComponent {...props} />
<p>Footer Component</p>
</>
)
}
}
export default WithHeaderFooter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment