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
| import { useTranslation } from 'react-i18next'
| import PureSelect from '@/app/components/base/select/pure'
|
| type InputModeSelectProps = {
| value?: string
| onChange: (value: string) => void
| }
| const InputModeSelect = ({
| value,
| onChange,
| }: InputModeSelectProps) => {
| const { t } = useTranslation()
| const options = [
| {
| label: 'Variable',
| value: 'variable',
| },
| {
| label: 'Constant',
| value: 'constant',
| },
| ]
|
| return (
| <PureSelect
| options={options}
| value={value}
| onChange={onChange}
| popupProps={{
| title: t('workflow.nodes.loop.inputMode'),
| className: 'w-[132px]',
| }}
| />
| )
| }
|
| export default InputModeSelect
|
|