React SDK
@feathery/react is a React library that allows you to embed Feathery forms, access form state, and modify form behavior.
What you need
Installation
npm install @feathery/reactyarn add @feathery/reactQuickstart example
import { init, Form } from '@feathery/react';
function App() {
// Initialize Feathery
init('<SDKKey>');
// Show the Feathery form
return <Form formId='<formId>' />
}Last updated
Was this helpful?