PopupOptions
Configure your form to display above the rest of your site as a popup.
Last updated
Was this helpful?
Configure your form to display above the rest of your site as a popup.
Last updated
Was this helpful?
Was this helpful?
import { useState } from 'react';
import { init, Form } from '@feathery/react';
function App() {
// Initialize Feathery
init('SDKKey', '[email protected]');
const [showPopup, setShowPopup] = useState(false);
// Show the `aBcDeF` Feathery form as a popup that
// appears when button `showForm` is clicked
return <>
<button id='showForm' onClick={() => setShowPopup(true)}/>
<Form
formId='aBcDeF'
popupOptions={{
show: showPopup,
onHide: () => setShowPopup(false),
}}
/>
</>
}