import React, { Component } from 'react';
import Types from 'prop-types';

export default class {{ name }} extends Component {
  render() {
    const {
    {{#each variables}}
      {{ this.name }},
    {{/each}}
    } = this.props;

    return <h1>Hello, world!</h1>;
  };
};

{{ name }}.propTypes = {
{{#each variables}}
  {{ this.name }}: Types.{{this.value}},
{{/each}}
};

