./src/components/AddNumberRoot.jsx
Module not found: Can't resolve './components/AddNumber' in '/Users/user/Desktop/reactpracticeall/react-redux/src/components'
Module not found: You attempted to import ../components/AddNumberRoot which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
import 경로를 설정하는데
import AddNumber from '../components/AddNumber';
import AddNumberRoot from './components/AddNumberRoot';
./ and ../ what are they defferrence??