diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-10 14:09:26 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-10 14:09:26 +0000 |
| commit | 767148f976f942bb68d4bc6c4d09b076aa6e39e0 (patch) | |
| tree | ded2073ba040fdf4cfa32c24757408c5de540517 /app/components | |
| parent | fcb95d50305c99368e2a19627ca1306a93888912 (diff) | |
| download | mullvadvpn-767148f976f942bb68d4bc6c4d09b076aa6e39e0.tar.xz mullvadvpn-767148f976f942bb68d4bc6c4d09b076aa6e39e0.zip | |
Update documentation
Diffstat (limited to 'app/components')
| -rw-r--r-- | app/components/Layout.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/components/Layout.js b/app/components/Layout.js index c4e66aed85..51215fe489 100644 --- a/app/components/Layout.js +++ b/app/components/Layout.js @@ -1,6 +1,13 @@ import React, { PropTypes, Component } from 'react'; import HeaderBar from './HeaderBar'; +/** + * Layout header + * + * @export + * @class Header + * @extends {Component} + */ export class Header extends Component { static Style = HeaderBar.Style @@ -14,6 +21,13 @@ export class Header extends Component { } } +/** + * Content container + * + * @export + * @class Container + * @extends {Component} + */ export class Container extends Component { static propTypes = { children: PropTypes.element.isRequired @@ -28,6 +42,13 @@ export class Container extends Component { } } +/** + * Layout container + * + * @export + * @class Layout + * @extends {Component} + */ export class Layout extends Component { static propTypes = { children: PropTypes.oneOfType([ |
