Created
December 10, 2019 01:03
-
-
Save treyhuffine/b66deff810fd2461f7071b23572a3291 to your computer and use it in GitHub Desktop.
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
import React from 'react'; | |
import Sidebar from '../Sidebar'; | |
import UserHeader from '../UserHeader'; | |
import MobileNav from '../MobileNav'; | |
import { StyledContent } from './styles'; | |
const Layout = ({ user, children }) => { | |
return ( | |
<> | |
<MobileNav /> | |
<Sidebar /> | |
<StyledContent> | |
<UserHeader user={user} /> | |
<div>{children}</div> | |
</StyledContent> | |
</> | |
); | |
}; | |
export default Layout; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment