To embed a Surface form inline in your React application, you can use an iframe. This method allows the form to appear as part of your page content. Add the following code wherever you’d like the form to appear in your React component:
<iframe
    id="surface-iframe"
    src="<your_form_url>"
    frameborder="0"
    allowfullscreen>
</iframe>
Replace <your_form_url> with your actual Surface Form URL.