-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathItemListInputs.tsx
More file actions
42 lines (39 loc) · 1.19 KB
/
ItemListInputs.tsx
File metadata and controls
42 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* eslint no-console: "off" */
import React from 'react';
import SelectValueListInput from './SelectValueListInput';
import ItemListInput from './ItemListInput';
import SampleSection from './SampleSection';
function ItemListInputs(): React.ReactElement {
return (
<SampleSection name="item-list-inputs" className="style-guide-inputs">
<h2 className="ui-title">Item Lists</h2>
<div className="row">
<div className="col">
<div className="form-group">
<h5>Select List</h5>
<div style={{ height: '300px' }}>
<SelectValueListInput />
</div>
</div>
</div>
<div className="col">
<div className="form-group">
<h5>Item List</h5>
<div style={{ height: '300px' }}>
<ItemListInput />
</div>
</div>
</div>
<div className="col">
<div className="form-group">
<h5>Multi Select Item List</h5>
<div style={{ height: '300px' }}>
<ItemListInput isMultiSelect />
</div>
</div>
</div>
</div>
</SampleSection>
);
}
export default ItemListInputs;