react-native-graph-plus
Version:
📈 Beautiful, high-performance Graphs and Charts for React Native +
10 lines (8 loc) • 433 B
JavaScript
import React from 'react';
import { AnimatedLineGraph } from './AnimatedLineGraph';
import { StaticLineGraph } from './StaticLineGraph';
function LineGraphImpl(props) {
if (props.animated) return /*#__PURE__*/React.createElement(AnimatedLineGraph, props);else return /*#__PURE__*/React.createElement(StaticLineGraph, props);
}
export const LineGraph = /*#__PURE__*/React.memo(LineGraphImpl);
//# sourceMappingURL=LineGraph.js.map