MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / CardBody

Function CardBody

src/CardBody.js:20–34  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

18};
19
20function CardBody(props) {
21 const {
22 className,
23 cssModule,
24 innerRef,
25 tag: Tag = 'div',
26 ...attributes
27 } = props;
28 const classes = mapToCssModules(
29 classNames(className, 'card-body'),
30 cssModule,
31 );
32
33 return <Tag {...attributes} className={classes} ref={innerRef} />;
34}
35
36CardBody.propTypes = propTypes;
37

Callers

nothing calls this directly

Calls 1

mapToCssModulesFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…