import React from 'react'; export type Field = { name: string; label: string; required?: boolean; type: 'text' | 'number'; }; const ContactFormExample: React.FC<{ recipientId: string; fields: Field[]; }> = ({ fields = [], recipientId }) => { return (
); }; export default ContactFormExample;