Skip to content

Instantly share code, notes, and snippets.

@antonioiksi
Created November 5, 2017 21:52
Show Gist options
  • Save antonioiksi/fbe9d1794eef018a676865df8ca6bcd9 to your computer and use it in GitHub Desktop.
Save antonioiksi/fbe9d1794eef018a676865df8ca6bcd9 to your computer and use it in GitHub Desktop.
Compose Layout and Route
export const BackofficeRoute = ({component:Component, ...rest}) => {
return (
<Route {...rest} render={matchProps => (
<div className="BackofficeLayout">
<AuthRequired/>
<Header/>
<div className="Header">Header</div>
<Component {...matchProps}/>
<div className="Footer">Footer</div>
</div>
)}/>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment