summaryrefslogtreecommitdiffhomepage
path: root/app/components/Layout.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-02-14 19:13:39 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-02-14 19:13:39 +0000
commit5ba4a72e546747167e7ae815724ee2dd4b2ef8fb (patch)
tree8ebf52df1035c3c64de4736a066ab97b32592521 /app/components/Layout.js
parente0b424b3ea7785450392172f689f9376f829c8f8 (diff)
downloadmullvadvpn-5ba4a72e546747167e7ae815724ee2dd4b2ef8fb.tar.xz
mullvadvpn-5ba4a72e546747167e7ae815724ee2dd4b2ef8fb.zip
Split up Layout on Container and Header for better control over Headerbar from components
Diffstat (limited to 'app/components/Layout.js')
-rw-r--r--app/components/Layout.js36
1 files changed, 29 insertions, 7 deletions
diff --git a/app/components/Layout.js b/app/components/Layout.js
index 7619f3df4f..b0cc0a8420 100644
--- a/app/components/Layout.js
+++ b/app/components/Layout.js
@@ -1,19 +1,41 @@
import React, { PropTypes, Component } from 'react';
import HeaderBar from './HeaderBar';
-export default class Layout extends Component {
+export class Header extends Component {
+
+ static Style = HeaderBar.Style
+
+ render() {
+ return (
+ <div className="layout__header">
+ <HeaderBar {...this.props} />
+ </div>
+ )
+ }
+}
+
+export class Container extends Component {
static propTypes = {
children: PropTypes.element.isRequired
};
+
+ render() {
+ return (
+ <div className="layout__container">
+ {this.props.children}
+ </div>
+ )
+ }
+}
+
+export class Layout extends Component {
+ static propTypes = {
+ children: PropTypes.arrayOf(PropTypes.node).isRequired
+ };
render() {
return (
<div className="layout">
- <div className="layout__header">
- <HeaderBar />
- </div>
- <div className="layout__container">
- {this.props.children}
- </div>
+ {this.props.children}
</div>
);
}