-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.js
32 lines (30 loc) · 893 Bytes
/
sidebar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
*
*/
import React, { Component } from 'react';
export default class Sidebar extends Component {
render() {
return (
<div className='pa4'>
<header className='pv2'>
<div className='big mb3 orange'>stance.</div>
<hr/>
<div>
<div className='mb3'>
<a className='link' href='#' onClick={this.props.changePage.bind(this, 'file-report')}>File Report</a>
</div>
<div className='mb3'>
<a className='link' href='#'>Manage</a>
</div>
<div className='mb3'>
<a className='link' href='#' onClick={this.props.changePage.bind(this, 'analytics')}>Analytics</a>
</div>
<div className='mb3'>
<a className='link' href='#'>Resources</a>
</div>
</div>
</header>
</div>
);
}
}