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

Function Example

stories/examples/ContainerResponsive.js:4–25  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Container } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <>
7 <Container className="bg-light border">.container</Container>
8 <Container className="bg-light border" fluid="sm">
9 .container-sm
10 </Container>
11 <Container className="bg-light border" fluid="md">
12 .container-md
13 </Container>
14 <Container className="bg-light border" fluid="lg">
15 .container-lg
16 </Container>
17 <Container className="bg-light border" fluid="xl">
18 .container-xl
19 </Container>
20 <Container className="bg-light border" fluid>
21 .container-fluid
22 </Container>
23 </>
24 );
25}
26
27export default Example;

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…