freifunk-app/components/fetchData.js
2018-08-24 18:09:42 +02:00

17 lines
347 B
JavaScript

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(
<Text></Text>
);
}
}