diff --git a/src/ts/containers/test/layout/Header.tsx b/src/ts/containers/test/layout/Header.tsx index fba00ce..930e903 100644 --- a/src/ts/containers/test/layout/Header.tsx +++ b/src/ts/containers/test/layout/Header.tsx @@ -1,6 +1,8 @@ import * as React from 'react'; import { Container } from 'semantic-ui-react'; import { TopBar } from '../TopBar'; +import { LogoBar } from './LogoBar'; +import { TitleBar } from './TitleBar'; export class Header extends React.Component { @@ -12,7 +14,11 @@ export class Header extends React.Component { render() { return ( - + + + + + // ); } } diff --git a/src/ts/containers/test/layout/Layout.tsx b/src/ts/containers/test/layout/Layout.tsx index f965e1e..9de6227 100644 --- a/src/ts/containers/test/layout/Layout.tsx +++ b/src/ts/containers/test/layout/Layout.tsx @@ -14,12 +14,12 @@ export class Layout extends React.Component { constructor(props: any, context: any) { super(props, context); this.state = { - notification_visible:false, + notification_visible: false, }; } onSidebar = () => { - this.setState({notification_visible:!this.state.notification_visible}) + this.setState({ notification_visible: !this.state.notification_visible }); } render() { @@ -27,66 +27,73 @@ export class Layout extends React.Component { - + Left menu - + - Logo +
- Page Content + + + + + + + +