import React from 'react'; import {View} from 'react-native'; import {BarChart, LineChart, PieChart} from './src'; const App = () => { // const lineData = [ // {value: 40, text: 'Jan', textShiftX: 8, textShiftY: -10}, // {value: 80, text: 'Feb'}, // {value: 170, text: 'Mar', textFontSize: 16, textColor: 'blue'}, // {value: 90, text: 'Apr'}, // {value: 190, text: 'May'}, // ]; // const lineData2 = [ // {value: 30, text: 'Jan', textShiftX: 8}, // {value: 40, text: 'Feb'}, // {value: 60, text: 'Mar'}, // {value: 70, text: 'Apr'}, // {value: 100, text: 'May'}, // ]; const data = [ {value: 150}, {value: 80, text: 80}, {value: 90, text: 90, textColor: 'green', textBackgroundColor: 'pink'}, {value: 70}, ]; return ( {/* */} {/* */} {/* */} {/* */} {/* */} ); }; export default App;