UNPKG

react-native-echarts-cus

Version:

echarts4.2的图表,实现echarts的各种图表, 本组件使用百度的echarts4.2 使用方法遵循native-echarts

14 lines (12 loc) 324 B
import React, { Component } from 'react'; import { View } from 'react-native'; import styles from '../../style'; export default class App extends Component { render() { return ( <View style={[styles.container, {width: this.props.width}]}> {this.props.children} </View> ); } }