import React from 'react'; import {View, StyleSheet, Text} from 'react-native'; //import Svg, {Polyline, Polygon, Rect, G} from 'react-native-svg-web'; import Svg, {Polyline, Polygon, Rect, G} from 'react-native-svg'; const Graph = props => { const graphHeight = 100; const data = props.data.slice(-600); const coordStr = data.map((element, i) => `${i}, ${element / 2}`); return ( ); }; export default Graph;