({ input, label, meta, field, group: FieldGroup })
| 5 | import CodeEditor from './CodeEditor' |
| 6 | |
| 7 | const FuncEditorField = ({ input, label, meta, field, group: FieldGroup }) => { |
| 8 | return ( |
| 9 | <FieldGroup label={label} meta={meta} input={input} field={field}> |
| 10 | <Panel><CodeEditor |
| 11 | height="200" |
| 12 | language="javascript" |
| 13 | code={input.value} |
| 14 | onChange={input.onChange} |
| 15 | /></Panel> |
| 16 | </FieldGroup> |
| 17 | ) |
| 18 | } |
| 19 | |
| 20 | @DashboardWrap('dashboard.endpoint') |
| 21 | class ConnectModal extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected