(props)
| 12 | |
| 13 | module.exports = class extends Component { |
| 14 | constructor (props) { |
| 15 | super(props); |
| 16 | this.state = { |
| 17 | readOnly: false, |
| 18 | maxValue: 5, |
| 19 | value: 3, |
| 20 | theme: 'star' |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | render () { |
| 25 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected