react-native-charts-wrapper
Version:
A react-native charts support both android and ios.
23 lines (18 loc) • 363 B
JavaScript
import React from 'react';
import {
AppRegistry,
BackAndroid,
Navigator,
Text,
View
} from 'react-native';
import ChartsListScreen from './app/ChartsListScreen';
class Example extends React.Component {
render() {
return (
<ChartsListScreen>
</ChartsListScreen>
);
}
}
AppRegistry.registerComponent('Example', () => Example);