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