0
votes

I'm trying to import a component into another, but react native keeps throwing error of:

[Error: undefined Unable to resolve module ./components/ColorBox from App.js:

Below is an image describing my file structure:

enter image description here

1
Can you post the code of colorBox? Are you exporting it? - Konstantin

1 Answers

0
votes

Please export ColorBox component.

For example, in ColorBox.js

const ColorBox = () => {
  return (
    <View>
      ...
    <View>
  )
}

export default ColorBox;