This is what I mean:
import BsssButtonGroup from "react-bootstrap/ButtonGroup";
This works the same way as:
import ButtonGroup from "react-bootstrap/ButtonGroup";
..and I don't understand why?
The BsssButtonGroup is not an existing or defined componend in the ButtonGroup component in React Bootstrap, so how am I able to import it? WHAT is being imported exactly? How does writing some random name work?? I thought you have to import the exported component? But BsssButtonGroup is not exported, so how am I able to import it then?
Also, what happens when I pass props to this component? Where are these props handled, and how can I access them?