In an effort to keep import
statements clean and easy to work with, we can use import aliases.
For example (anywhere in the app
or src
tree):
import { network } from 'lib/network';
import { colors } from 'styles/theme';
import useThrottledEvent from 'hooks/useThrottledEvent';