import React, { Component } from 'react'; import { Text} from 'react-native'; export default class FetchData extends Component { constructor(props) { super(props); } render() { var data = this.props.data; console.log('Child-Data from JSON: '); return( ); } }