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

Function Example

stories/examples/Card/Sizing.js:4–29  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Card, Button, CardTitle, CardText, Row, Col } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Row>
7 <Col sm="6">
8 <Card body>
9 <CardTitle tag="h5">Special Title Treatment</CardTitle>
10 <CardText>
11 With supporting text below as a natural lead-in to additional
12 content.
13 </CardText>
14 <Button>Go somewhere</Button>
15 </Card>
16 </Col>
17 <Col sm="6">
18 <Card body>
19 <CardTitle tag="h5">Special Title Treatment</CardTitle>
20 <CardText>
21 With supporting text below as a natural lead-in to additional
22 content.
23 </CardText>
24 <Button>Go somewhere</Button>
25 </Card>
26 </Col>
27 </Row>
28 );
29}
30
31export default Example;
32

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…