Skip to content

Commit

Permalink
step3: left sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
Clint Goodman committed May 30, 2018
1 parent f8eece9 commit e5dd728
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion src/components/LeftSidebar/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
import React from "react";
import { css } from "emotion";
import Box from "../Box";

const LeftSidebar = () => <aside>Left Sidebar</aside>;
const leftStyles = css({
"& > *": {
display: "flex",
alignItems: "center",
},
});

const LeftSidebar = () => (
<aside className={leftStyles}>
<Box tile>
<Box icon black />
Inbox
</Box>
<Box tile>
<Box icon black />
Snoozed
</Box>
<Box tile>
<Box icon black />
Done
</Box>
<hr />
<Box tile>
<Box icon black />
Drafts
</Box>
<Box tile>
<Box icon black />
Sent
</Box>
<Box tile>
<Box icon black />
Reminders
</Box>
<Box tile>
<Box icon black />
Trash
</Box>
<Box tile>
<Box icon black />
Spam
</Box>
<Box tile>
<Box icon black />
Contacts
</Box>
<hr />
</aside>
);

export default LeftSidebar;

0 comments on commit e5dd728

Please sign in to comment.