Is it planned to add import statements without relative paths (webpack) feature to create-react-app?
You can found info regarding this here and here.
With this we can do
importHeaderfrom'components/Header';importGridfrom'components/Grid';importTransactionFormfrom'containers/TransactionForm';importTransactionSummaryfrom'containers/TransactionSummary';import*asAppActionsfrom'actions';
instead of
importHeaderfrom'../../components/Header';importGridfrom'../../components/Grid';importTransactionFormfrom'../TransactionForm';importTransactionSummaryfrom'../TransactionSummary';import*asAppActionsfrom'../../actions';
Is it planned to add import statements without relative paths (webpack) feature to create-react-app?
You can found info regarding this here and here.
With this we can do
instead of