我正在嘗試從其他資料夾導入文件 但出現此錯誤
./src/components/Body/index.js Module not found: Can't resolve '../../context' in '/home/workspace/reactjs/coding-practices/layoutBuilder/src/components/Body'
我已經嘗試過:
import ConfigurationContext from '../../context' import ConfigurationContext from './../context'
我在 Body>index.js
想要從 context>ConfigurationContext.js
匯入物件
請幫忙解決這個問題
P粉5510842952024-04-05 00:17:35
試試這個
import ConfigurationContext from './../../context/ConfigurationContext'
因為您沒有在路徑中提及檔案名稱。