VSCode removes React import

Date: 2022-11-17

This is because of Eslint.

Edit .eslintrc (or the rules in package.json) and add the following rules:

{
    "rules": {
        "react/jsx-uses-react": "off",
        "react/react-in-jsx-scope": "off"
    }
}
70120cookie-checkVSCode removes React import