Skip to content

Commit

Permalink
stub sidebar component
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtekeste committed Jun 7, 2017
1 parent e4b0bf1 commit 181719f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/components/SideBar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React, { Component } from 'react';
import Header from './Header';

export default class SideBar extends Component {
constructor(props) {
super(props);

this.state = {};
}

render() {
return (
<div className="sidebar">
<Header />
</div>
);
}
}

0 comments on commit 181719f

Please sign in to comment.