mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 15:50:06 +02:00
11 lines
279 B
Markdown
11 lines
279 B
Markdown
|
```
|
||
|
const Dropdown = require('./index').default;
|
||
|
const Label = require('../form/label').default;
|
||
|
|
||
|
<div style={{ position: 'relative', height: '175px' }}>
|
||
|
<Label>Service</Label>
|
||
|
<Dropdown placeholder="Choose" data={["Wordpress", "Nginx", "Percona"]}>
|
||
|
</Dropdown>
|
||
|
</div>
|
||
|
```
|