module.exports = ` import React, { PropTypes } from 'react'; import { View, Text } from 'react-native'; const {{name}} = (props) => { return ( {props.text} ); }; {{name}}.defaultProps = { text: 'Hello.', }; {{name}}.propTypes = { text: PropTypes.string, }; export default {{name}}; `;