@shopgate/engage
Version:
Shopgate's ENGAGE library.
15 lines (14 loc) • 313 B
JavaScript
import { i18n } from '@shopgate/engage/core';
/**
* Generates form configuration.
* @returns {Object}
*/
const generateFormConfig = () => ({
fields: {
instructions: {
type: 'text',
label: i18n.text('checkout.pickup_contact.form.instructions')
}
}
});
export default generateFormConfig;