chartjs-2-react/example/src/App.js

15 lines
340 B
JavaScript
Raw Normal View History

import React, { Component } from 'react'
import { RadialGaugue } from 'chart-2-react'
export default class App extends Component {
render () {
return (
<div style={{maxWidth: '600px', marginTop: '25px'}}>
<h3 style={{textAlign: 'center'}}>RadialGaugue Component:</h3>
<RadialGaugue />
</div>
)
}
}