Currently, I am utilizing both react-bootstrap and JSS concurrently, which may not be the most optimal approach. However, it is what I have been working with. I am attempting to apply a combination of Bootstrap classes while also incorporating styling through JSS.
Is this feasible? I have been unsuccessful in finding any examples thus far.
This scenario serves as a typical instance of JSS implementation
<div className={myStyle.someWrapper}></div>
Moreover, I am trying to achieve the following:
<div className="{myStyle.someWrapper}, h-100"></div>
Is it possible for JSS to accommodate this?