I have a relatively straightforward issue of trying to add inline scripting to a React component. What I have so far:
\'use strict\'; import \'../../styles/
componentDidMount() { const head = document.querySelector("head"); const script = document.createElement("script"); script.setAttribute( "src", "https://assets.calendly.com/assets/external/widget.js" ); head.appendChild(script); }