// @flow import React, {Component} from 'react'; import { AppRegistry, StyleSheet, Text, View, } from 'react-native'; export default class Info extends Component { props : { description : string, } render() { return ( {this.props.description} {this.props.children} ) } }