import React, { PropTypes } from 'react' import { connect } from 'react-redux' import { bindActionCreators } from 'redux' import FontAwesome from 'react-fontawesome' import * as uiActions from '../services/ui/actions' class SidebarToggleButton extends React.Component{ constructor(props) { super(props); } handleClick(e){ this.props.uiActions.toggleSidebar() } render(){ var classname = 'sidebar-toggle' if( this.props.open ) classname += ' open' if( this.props.className ) classname += ' '+this.props.className return (