MCPcopy Create free account
hub / github.com/0wczar/airframe-react / Dropdowns

Function Dropdowns

app/routes/Interface/Dropdowns/Dropdowns.js:34–85  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32import { Activity } from "../../components/Dropdowns/Activity";
33
34const Dropdowns = () => (
35 <React.Fragment>
36 <Container>
37 <HeaderMain
38 title="Dropdowns"
39 className="mb-5 mt-4"
40 />
41 { /* START Header 1 */}
42 <Row>
43 <Col lg={ 12 }>
44 <HeaderDemo
45 no={1}
46 title="Dropdown States"
47 subTitle={(
48 <React.Fragment>
49 Dropdown component states
50 </React.Fragment>
51 )}
52 />
53 </Col>
54 </Row>
55 { /* END Header 1 */}
56 { /* START Section 1 */}
57 <Row>
58 { /* START Col6 1 */}
59 <Col lg={ 6 }>
60 <Card className="mb-3">
61 <CardBody>
62 <CardTitle tag="h6">
63 Dropdown: Default
64 <span className="small ml-1 text-muted">
65 #1.01
66 </span>
67 </CardTitle>
68 <p>
69 Default dropdown menu styling.
70 </p>
71 <UncontrolledButtonDropdown>
72 <DropdownToggle caret color="secondary" outline>
73 Dropdown
74 </DropdownToggle>
75 <DropdownMenu persist>
76 <DropdownItem>Profile</DropdownItem>
77 <DropdownItem>Settings</DropdownItem>
78 <DropdownItem divider />
79 <DropdownItem>Logout</DropdownItem>
80 </DropdownMenu>
81 </UncontrolledButtonDropdown>
82 </CardBody>
83 </Card>
84 </Col>
85 { /* END Col6 1 */}
86 { /* START Col6 1 */}
87 <Col lg={ 6 }>
88 <Card className="mb-3">

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected