1Writing a path to a react file/project file
2import something from '/thatThing'; this is the current tree
3import something from '../thatThing';
4import something from '../../thatThing';
5
6dipending on your level of files you should be able to find a way to map through your project files with this tips.