I want to remove the boxes around the <ListGroupItems>
in Reactstrap's <ListGroup>
Simply use Bootstrap's border-0
class under Borders Utility.
<ListGroup>
<ListGroupItem className="border-0">Item 1</ListGroupItem>
<ListGroupItem className="border-0">Item 2</ListGroupItem>
</ListGroup>