Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created December 10, 2019 01:03
Show Gist options
  • Save treyhuffine/b66deff810fd2461f7071b23572a3291 to your computer and use it in GitHub Desktop.
Save treyhuffine/b66deff810fd2461f7071b23572a3291 to your computer and use it in GitHub Desktop.
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