mirror of
https://github.com/bartgryszko/react-native-circular-progress.git
synced 2026-01-18 16:13:10 +00:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import React from 'react';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
import ProgressChart from './ProgressChart';
|
|
|
|
export default class App extends React.Component {
|
|
render() {
|
|
return (
|
|
<ProgressChart />
|
|
);
|
|
}
|
|
}
|