I'm trying to import a file from another folder But getting this error
./src/components/Body/index.js Module not found: Can't resolve '../../context' in '/home/workspace/reactjs/coding-practices/layoutBuilder/src/components/Body'
I've tried:
import ConfigurationContext from '../../context' import ConfigurationContext from './../context'
I want to import objects from context>ConfigurationContext.js
in Body>index.js
P粉5510842952024-04-05 00:17:35
Try this
import ConfigurationContext from './../../context/ConfigurationContext'
Because you didn't mention the file name in the path.