Use React Helmet Async with your Gatsby site
npm install @rhysforyou/gatsby-plugin-react-helmet-async 
Adds support for [React Helmet Async] to a Gatsby project.
[react helmet async]: (https://github.com/staylor/react-helmet-async)
``shYarn
yarn add react-helmet-async @rhysforyou/gatsby-plugin-react-helmet-async
Usage
Add the plugin and its options to your
gatsby-config.js like so:`js
module.exports = {
plugins: ["@rhysforyou/gatsby-plugin-react-helmet-async"]
};
`Then just use React Helmet Async as you usually would, the plugin will create the
HelmetProvider component for you and ensure that your ` element contains the correct tags when building your site.