Hello guys.
We have a NextJS & ReactJS application running, and one of my bosses asked me to add the following code inside our app:
<script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
region: "eu1",
portalId: "some-portal-id",
formId: "some-form-id"
});
</script>
Now, the problem is, that is HTML code, with a CDN for hbspt.
Is there any plugin on npm, that I can install and use it with import inside a React project?
Thank you, ![]()
Emanuel