import React from 'react'; import {View} from 'react-native'; import {LineChart} from '../../src/LineChart'; const LineChartTwo = () => { const lineData = [ {value: 0, dataPointText: '0'}, {value: 10, dataPointText: '10'}, {value: 8, dataPointText: '8'}, {value: 58, dataPointText: '58'}, {value: 56, dataPointText: '56'}, {value: 78, dataPointText: '78'}, {value: 74, dataPointText: '74'}, {value: 98, dataPointText: '98'}, ]; const lineData2 = [ {value: 0, dataPointText: '0'}, {value: 20, dataPointText: '20'}, {value: 18, dataPointText: '18'}, {value: 40, dataPointText: '40'}, {value: 36, dataPointText: '36'}, {value: 60, dataPointText: '60'}, {value: 54, dataPointText: '54'}, {value: 85, dataPointText: '85'}, ]; return ( ); }; export default LineChartTwo;