gatsby-plugin-provide-react
v1.0.2
Published
Provides to all of your component React instances, you don't need to import React anymore.
Readme
gatsby-plugin-provide-react
You don't need to import React anymore. Say good bye to:
import React from "react"Provides to all of your components React instances.
Install
$ npm i gatsby-plugin-provide-react
or
$ yarn add gatsby-plugin-provide-react
How to use
Add the plugin to your gatsby-config.js.
module.exports = {
plugins: [
`gatsby-plugin-provide-react`
]
}Common error
If you are getting:
error 'React' must be in scope when using JSXYou 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"
}
}