You don't need to import React anymore. Say good bye to:
import React from "react"
Provides to all of your components React instances.
$ npm i gatsby-plugin-provide-react
or
$ yarn add gatsby-plugin-provide-react
Add the plugin to your gatsby-config.js
.
module.exports = {
plugins: [
`gatsby-plugin-provide-react`
]
}
If you are getting:
error 'React' must be in scope when using JSX
You need to create an empty .eslintrc
in root of your folder. This error occurs from eslint.
If you are using eslint in your project, just update this key to your config:
{
"rules": {
"no-undef": "off"
}
}