Hello, This is my first time using semantic ui and react in meteor js.
I follow this https://react.semantic-ui.com/introduction
i got error on my meteor client
ReferenceError: Rating is not defined
This is my code
import React, { Component } from 'react';
export default class Task extends Component {
render() {
return (
<Rating rating={1} maxRating={5} />
)
}
}
please help solve this problem
please help me, if there any sample meteor - semantic ui - react.