I have a backend that returns meta tags for a specific page. I would like to insert this response into the Head section of my page component.
I can insert html into React using <div dangerouslySetInnerHTML={{__html: response.someHtml}} />.
Is it possible to do the same for the <Head> component?