UNPKG

react-native-svg-charts

Version:

Customizable charts (Line, Bar, Area, Pie, Circle, Progress) for React Native

18 lines (14 loc) 439 B
import React from 'react'; import LineChart from './line-chart'; import LineChartGrouped from './line-chart-grouped'; const LineChartGate = props => { const { data } = props; if (data[0] && data[0].hasOwnProperty('data')) { return /*#__PURE__*/React.createElement(LineChartGrouped, props); } return /*#__PURE__*/React.createElement(LineChart, props); }; export default LineChartGate; //# sourceMappingURL=index.js.map