In progress...
Procedure
- Install the package Semantic-UI-React. The Semantic UI stylesheet reference will be use as now.
- Import the elements you need from the semantic-ui-react package:
- Search the current UI Element/Collection/View/... used in the Semantic UI Documentation from the className value.
- Search in the Sermantic UI React Documentation the corresponding Element/Collection/View/...
Take into account that some style attributes of the components should be pass as props to the new react component. Searching among the examples in the documentation can help you to detect which ones. For example:
code{/*semantic ui element*/ <div className="ui inverted blue menu"><div> --> {/*Equivalent Semantic-UI-REact element*/} <Menu inverted="true" color="blue" secondary>