Skip to content

Instantly share code, notes, and snippets.

@Jantho1990
Created June 10, 2018 06:05
StarRating React -- 4c
export default class RatingInputs extends Component {
constructor() {
super()
this.handleRating = this.handleRating.bind(this)
}
// ...
handleRating() {
let rating = Number(this.refs.rating.value)
// More to come!
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment