| 1 |
import { demoFormWorkflow } from '@agent/workflows/canvas/components/demo-form-workflow'; |
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
import { fullscreen } from '@wordpress/icons'; |
| 4 |
|
| 5 |
export default demoFormWorkflow({ |
| 6 |
id: 'demo-form-simple', |
| 7 |
canvas: 'simple', |
| 8 |
icon: fullscreen, |
| 9 |
// translators: Extendify is the brand name and stays as-is. "simple" names a demo variant showing the form as a plain modal. |
| 10 |
text: __('Extendify demo form simple', 'extendify-local'), |
| 11 |
}); |
| 12 |
|