📜  编写反应文件路径的不同方法 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:50.900000             🧑  作者: Mango

代码示例1
Writing a path to a react file/project file
import something from '/thatThing'; this is the current tree
import something from '../thatThing';
import something from '../../thatThing';

dipending on your level of files you should be able to find a way to map through your project files with this tips.