If you use React, import React from 'react' is the first thing that you write in your code but if you have created a new react app using creat-reac...
For further actions, you may consider blocking this person and/or reporting abuse
When using Vite - it still seems to make me use it on react 17
Hi @seanmclem, It seems like Esbuild, which Vite is based on, doesn't use Babel to compile JSX and I think the new JSX transform requires Babel for all the JSX conversion. I'll get back to you if I can confirm this. Thanks for pointing it out.
I'm very positive Babel is the reason.
Not just babel. You can use it with vite (with TS, for example). reactjs.org/blog/2020/09/22/introd...
"We’d like to thank Babel, TypeScript, Create React App, Next.js, Gatsby, ESLint, and Flow maintainers for their help implementing and integrating the new JSX transform. "
If you are getting an eslint error on one of the other platforms (like TS), you can just (from github.com/jsx-eslint/eslint-plugi...
If you are using the new JSX transform from React 17, you should disable this rule by extending react/jsx-runtime in your eslint config (add "plugin:react/jsx-runtime" to "extends").
yeah but for the main component and not very component file
Very helpful, thanks for sharing
Didn't know about this thanks for the post, will try on another project
Sure @nirazanbasnet :)
Very informative!
I use create react app with eslint and sadly I still get that error because of eslint.
Can you share me your eslint config?
Is the default one with the AirBnb coding style.
Oh okay. Well try it out and let you know if i find something.
Thanks, appreciate this info
why, why not?