Custom JSX Components
Embed custom JSX components into your Feathery form.
Overview
customComponents
import { init, Form } from '@feathery/react';
function App() {
// Initialize Feathery
init('SDKKey', '[email protected]');
// Show the `aBcDeF` Feathery form
return (
<Form
formId='aBcDeF'
customComponents={{ 'container-id': <MyAnimation /> }}
/>
);
}children
Last updated
Was this helpful?