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 * 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> { export class LogoBar extends React.Component<any, any> {
@ -19,7 +19,7 @@ export class LogoBar extends React.Component<any, any> {
render() { render() {
return ( return (
<div> <Container fluid>
<Menu borderless secondary > <Menu borderless secondary >
<Menu.Item <Menu.Item
name='logo' name='logo'
@ -29,11 +29,11 @@ export class LogoBar extends React.Component<any, any> {
</Menu.Item> </Menu.Item>
<Menu.Item <Menu.Item
position='right' position='right'
icon='bell outline' icon='bell'
onClick={this.handleNotiClick} onClick={this.handleNotiClick}
/> />
</Menu> </Menu>
</div> </Container>
); );
} }
} }