This commit is contained in:
sunny 2017-07-12 17:58:34 +09:00
parent c3fb110663
commit 4eb3e145e9
3 changed files with 11 additions and 14 deletions

View File

@ -91,15 +91,14 @@ export class TopBar extends React.Component<any, any> {
<Menu.Item position='right'>
<Icon name='setting' />
<Icon name='setting' size='large' />
</Menu.Item>
<Menu.Item onClick={() => {
this.setState({ notification_visible: !this.state.notification_visible })
}}>
<Icon name='alarm' />
<Label color='red' floating>22</Label>
<Label color='teal' horizontal>22</Label>
</Menu.Item>
<Menu.Item>
<Menu.Item >
<Dropdown icon='user' className='ui pointing dropdown top right'>
<Dropdown.Menu >
<Dropdown.Item text='Log out' />

View File

@ -11,8 +11,8 @@ export class Footer extends React.Component<any, any> {
render() {
return (
<Container>
Footer area
<Container textAlign='center'>
<div>Copyright LOAFLE.</div>
</Container>
);
}

View File

@ -20,9 +20,8 @@ export class Layout extends React.Component<any, any> {
render() {
return (
<div>
<br />
<Sidebar.Pushable as={Segment} >
<Header />
<Sidebar.Pushable as={Segment} vertical >
<Sidebar
as={Menu}
animation='overlay'
@ -47,20 +46,19 @@ export class Layout extends React.Component<any, any> {
</Menu.Item>
</Sidebar>
<Sidebar.Pusher >
<Segment basic >
<Header />
<Segment vertical>
<button placeholder='menu' onClick={() => {
this.setState({ notification_visible: !this.state.notification_visible })
}}> sidebar </button>
<Container>
<br />
<Router history={history}>
<Routes />
</Router>
</Container>
<br />
<Footer />
</Segment>
</Sidebar.Pusher>