如何使 Reactstrap 列表组无样式?

How to make Reactstrap's ListGroup unstyled?

我想删除 Reactstrap 的 <ListGroup>

<ListGroupItems> 周围的方框

只需使用 Bootstrap 的 border-0 class under Borders Utility.

<ListGroup>
  <ListGroupItem className="border-0">Item 1</ListGroupItem>
  <ListGroupItem className="border-0">Item 2</ListGroupItem>
</ListGroup>