Erro de importação no React
//put this in your eslintrc.json
"settings": { "import/resolver": { "node": { "paths": ["./src"] } } }
//this how your entire jsconfig.json should look
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"*": [
"src/*"
]
}
}
}
sandy_codes_py