import React from 'react'; import { FormikFormField, SelectInput, StandardFieldLayout } from '../../../../presentation'; import { LayoutProvider } from '../../../../presentation'; import { FormikStageConfig } from '../../stages/FormikStageConfig'; export function PluginTrigger(props: any) { const options = [ { label: 'Plugin Published', value: 'PUBLISHED' }, { label: 'Preferred Version Updated', value: 'PREFERRED_VERSION_UPDATED' }, ]; return ( ( } /> )} /> ); }