Estou tendo esse erro:
Module not found: You attempted to import ../components/FormularioCadastro which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
Meu codigo esta igual ao do professor, seria alguma configuracao diferente no React?
Codigo em /app.js :
import { Component } from "react";
import FormularioCadastro from "../components/FormularioCadastro";
import ListaDeNotas from "../components/ListaDeNotas";
class App extends Component {
render() {
return (
<section>
<FormularioCadastro />
<ListaDeNotas />
</section>
);
}
}
export default App;