14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
import React, { Component } from 'react';
|
|
import { WebView, View } from 'react-native';
|
|
import { Container, Echarts } from './components'
|
|
|
|
export default class App extends Component {
|
|
render() {
|
|
return (
|
|
<Container width={this.props.width}>
|
|
<Echarts {...this.props} />
|
|
</Container>
|
|
);
|
|
}
|
|
}
|