mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-29 03:20:26 -05:00
41 lines
708 B
React
41 lines
708 B
React
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||
|
|
||
|
const outerStyle = {
|
||
|
padding: '15px',
|
||
|
fontSize: '16px',
|
||
|
background: '#2f3441',
|
||
|
flex: '0 0 auto',
|
||
|
cursor: 'pointer',
|
||
|
color: '#2b90d9'
|
||
|
};
|
||
|
|
||
|
const iconStyle = {
|
||
|
display: 'inline-block',
|
||
|
marginRight: '5px'
|
||
|
};
|
||
|
|
||
|
const ColumnBackButton = React.createClass({
|
||
|
|
||
|
contextTypes: {
|
||
|
router: React.PropTypes.object
|
||
|
},
|
||
|
|
||
|
mixins: [PureRenderMixin],
|
||
|
|
||
|
handleClick () {
|
||
|
this.context.router.goBack();
|
||
|
},
|
||
|
|
||
|
render () {
|
||
|
return (
|
||
|
<div onClick={this.handleClick} style={outerStyle}>
|
||
|
<i className='fa fa-fw fa-chevron-left' style={iconStyle} />
|
||
|
Back
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
export default ColumnBackButton;
|