I have an action folder inside the src folder as you can see in above pic. I have component file in which I have import statements as below.
import React from "react";
import { connect } from "react-redux";
import "./Login.css";
import * as LoginAction from "../../actions/loginAction";
import rp from "request-promise";
import "bootstrap/dist/css/bootstrap.min.css";
But I am getting error as
/src/Components/LoginComponent.js Module not found: You attempted to import ../../actions/loginAction which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
Can you please help to find what is wrong here. Thanks in advance.