2019-12-05 13:07:01 -06:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
|
2019-12-05 15:44:46 -06:00
|
|
|
import { RadialGauge } from 'chartjs-2-react'
|
2019-12-05 13:07:01 -06:00
|
|
|
|
|
|
|
export default class App extends Component {
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div style={{maxWidth: '600px', marginTop: '25px'}}>
|
2019-12-05 15:44:46 -06:00
|
|
|
<h3 style={{textAlign: 'center'}}>RadialGauge Component:</h3>
|
|
|
|
<RadialGauge />
|
2019-12-05 13:07:01 -06:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|