This commit is contained in:
sunny 2017-07-19 15:17:43 +09:00
parent 99cbdabc6a
commit 52c68df022

View File

@ -1,5 +1,5 @@
import * as React from 'react';
import { Menu, Header } from 'semantic-ui-react';
import { Menu, Header, Container } from 'semantic-ui-react';
export class LogoBar extends React.Component<any, any> {
@ -19,7 +19,7 @@ export class LogoBar extends React.Component<any, any> {
render() {
return (
<div>
<Container fluid>
<Menu borderless secondary >
<Menu.Item
name='logo'
@ -29,11 +29,11 @@ export class LogoBar extends React.Component<any, any> {
</Menu.Item>
<Menu.Item
position='right'
icon='bell outline'
icon='bell'
onClick={this.handleNotiClick}
/>
</Menu>
</div>
</Container>
);
}
}