I’m trying to create an app in React using JSX and I’m a bit confused about how to distinguish my syntax (if this is even… a thing?)– I’m having some trouble knowing if I’m messing up the JSX in VSCode for a JavaScript file.
For example, in order to assign a class to something I’m trying to return w/ JSX, I know need to use className and not just “class,” — The problem I’m running into is that it’s hard to tell apart these nuances since VSCode doesn’t flag “class” as a JSX specific error (and reads it as normal JavaScript)…
Is there any way to check over JSX in VSCode for a JavaScript file or do I just have to kind of write my JSX blindly and then comb through it if there are errors?
