Sha256: 3f7564e51d527d54ca74937c19b13c22d04dedfd52aea8f6a60b2b65abbde2ef

Contents?: true

Size: 561 Bytes

Versions: 9

Compression:

Stored size: 561 Bytes

Contents

import React from 'react';

export class ScreenWrapper extends React.Component {
    static propTypes =
        {identifier: React.PropTypes.string.isRequired};
    render() {
        const export classes = _.classnames(
            'screen-wrapper',  this.props.identifier, this.props.export className,
            {'flex-vertically': this.props.flexVertical}
        );
        return (
            React.createElement("div", {"export className": (classes), "style": (this.props.style)},
                (this.props.children)
            )
        );
    }
}

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
hippo-fw-0.9.5 client/hippo/components/shared/ScreenWrapper.jsx
hippo-fw-0.9.4 client/hippo/components/shared/ScreenWrapper.jsx
hippo-fw-0.9.3 client/hippo/components/shared/ScreenWrapper.jsx
hippo-fw-0.9.2 client/hippo/components/shared/ScreenWrapper.jsx
hippo-fw-0.9.1 client/hippo/components/shared/ScreenWrapper.jsx
lanes-0.8.3 client/lanes/components/shared/ScreenWrapper.jsx
lanes-0.8.2 client/lanes/components/shared/ScreenWrapper.jsx
lanes-0.8.1 client/lanes/components/shared/ScreenWrapper.jsx
lanes-0.8.0 client/lanes/components/shared/ScreenWrapper.jsx