Skip to content

Instantly share code, notes, and snippets.

@michaltakac
Created November 17, 2015 22:15
Show Gist options
  • Save michaltakac/583a3ec697334fb94b5e to your computer and use it in GitHub Desktop.
Save michaltakac/583a3ec697334fb94b5e to your computer and use it in GitHub Desktop.
Meteorboard - Sidebar component
import Component from 'react-pure-render/component';
import React, {PropTypes} from 'react';
export default class Sidebar extends Component {
static propTypes = {
// ...
}
render() {
return (
<div className='sidebar' id="sidebar">
{/* Sidebar component code belongs here */}
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment