| 1 | import PluginGateways from './render'; |
| 2 | |
| 3 | const { __ } = wp.i18n; |
| 4 | |
| 5 | const base = { |
| 6 | name: 'jf-gateways-panel', |
| 7 | title: __( 'Gateways Settings', 'jet-form-builder' ), |
| 8 | }; |
| 9 | |
| 10 | const settings = { |
| 11 | render: PluginGateways, |
| 12 | icon: 'money-alt', |
| 13 | }; |
| 14 | |
| 15 | export default { |
| 16 | base, |
| 17 | settings, |
| 18 | }; |