How to configure import alias in React Native
Import aliases are better for maintenance and more readable. Learn how to set up them in React Native!
Look at those two examples:
1. import { InputArea } from '~components/InputArea'
2. import { InputArea } from '../../../../../components/InputArea'
We will learn how to set up our environment to have the first variant working.