Sha256: c20e171f63dd558399a2fa42677fc2f29bb3d6d1f6f761ffc9d479b24e85c9c9

Contents?: true

Size: 622 Bytes

Versions: 5

Compression:

Stored size: 622 Bytes

Contents

import React from 'react';
import { observer } from 'mobx-react';
import Screen from 'hippo/components/screen';

@observer
export default class ReadySetGo extends React.PureComponent {

    static propTypes = {
        screen: React.PropTypes.instanceOf(Screen.Instance).isRequired,
    }

    render() {
        return (
            <Screen screen={this.props.screen}>
                <div className="fancy-header">
                    <h1>Hello bright shiny world</h1>
                    <h2>Served by the AppyApp extension&rsquo;s ReadySetGo screen</h2>
                </div>
            </Screen>
        );
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hippo-fw-0.9.5 command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx
hippo-fw-0.9.4 command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx
hippo-fw-0.9.3 command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx
hippo-fw-0.9.2 command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx
hippo-fw-0.9.1 command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx