-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathselect.tsx
54 lines (49 loc) · 887 Bytes
/
select.tsx
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
43
44
45
46
47
48
49
50
51
52
53
54
/**
* Run this example:
* npm run example examples/select.tsx
*/
import React, {useState} from 'react';
import {render, Box, Text} from 'ink';
import {Select} from '../source/index.js';
function Example() {
const [value, setValue] = useState<string | undefined>();
return (
<Box padding={2} flexDirection="column" gap={1}>
<Select
options={[
{
label: 'Red',
value: 'red',
},
{
label: 'Green',
value: 'green',
},
{
label: 'Yellow',
value: 'yellow',
},
{
label: 'Blue',
value: 'blue',
},
{
label: 'Magenta',
value: 'magenta',
},
{
label: 'Cyan',
value: 'cyan',
},
{
label: 'White',
value: 'white',
},
]}
onChange={setValue}
/>
<Text>Selected value: {value}</Text>
</Box>
);
}
render(<Example />);