Search code examples
reactstrap

How to make Reactstrap's ListGroup unstyled?


I want to remove the boxes around the <ListGroupItems> in Reactstrap's <ListGroup>


Solution

  • 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>