React

You can use Magical Forms in your React and React Native apps

function MagicalForm() {
  return (
    <form method="post" action="https://api.magicalforms.com/forms/yourformid">
      <label>Enter your name:
        <input type="text" />
      </label>
    </form>
  )
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<MagicalForm />);
An example using the React Hook Forms library

Last updated