I am currently facing an issue in my project where I need to use Reactstrap but the project does not utilize Bootstrap. The problem arises when I try to install Bootstrap for Reactstrap, as it overrides my project styles which is not ideal. I want the component I am working on to only use the necessary components from Reactstrap without affecting the rest of the project.
Here is how I import the needed components:
import {
ButtonDropdown,
DropdownToggle,
DropdownMenu,
DropdownItem,
} from 'reactstrap';
And this is how I include Bootstrap in my view:
import '../../../node_modules/bootstrap/dist/css/bootstrap.css';
I am seeking guidance on how to incorporate Reactstrap solely for my specific component and view without impacting the entire project. Thank you!