react can't import file 3 folders up

JavaScript
// The code commented out below will not work
// import file from '.../fileLcoation';

// every time you go up 2 folers, you need to go down 1 to continue as seen below
import file from '../../fileLcoation';
Source

Also in JavaScript: