Unable to import images from different folder in React Naitve
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Hi all I'm new to react native and unable to display images from different folder. Here is my image file structure.
src/images/bell.png
src/images/images.js
images.js
export const NOTIFICATION_ICON = require('./bell.png');
The file structure of the component I'm using this image
src/components/common/AppHeader.js
My AppHeader.js file
import { NOTIFICATION_ICON } from "../../images/images";
return(
<Image source={NOTIFICATION_ICON} />
);
I'm getting the following error.
Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
Can somebody please help?
javascript reactjs react-native
add a comment |
Hi all I'm new to react native and unable to display images from different folder. Here is my image file structure.
src/images/bell.png
src/images/images.js
images.js
export const NOTIFICATION_ICON = require('./bell.png');
The file structure of the component I'm using this image
src/components/common/AppHeader.js
My AppHeader.js file
import { NOTIFICATION_ICON } from "../../images/images";
return(
<Image source={NOTIFICATION_ICON} />
);
I'm getting the following error.
Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
Can somebody please help?
javascript reactjs react-native
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15
add a comment |
Hi all I'm new to react native and unable to display images from different folder. Here is my image file structure.
src/images/bell.png
src/images/images.js
images.js
export const NOTIFICATION_ICON = require('./bell.png');
The file structure of the component I'm using this image
src/components/common/AppHeader.js
My AppHeader.js file
import { NOTIFICATION_ICON } from "../../images/images";
return(
<Image source={NOTIFICATION_ICON} />
);
I'm getting the following error.
Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
Can somebody please help?
javascript reactjs react-native
Hi all I'm new to react native and unable to display images from different folder. Here is my image file structure.
src/images/bell.png
src/images/images.js
images.js
export const NOTIFICATION_ICON = require('./bell.png');
The file structure of the component I'm using this image
src/components/common/AppHeader.js
My AppHeader.js file
import { NOTIFICATION_ICON } from "../../images/images";
return(
<Image source={NOTIFICATION_ICON} />
);
I'm getting the following error.
Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
Can somebody please help?
javascript reactjs react-native
javascript reactjs react-native
edited Nov 16 '18 at 15:35
War10ck
10.4k63046
10.4k63046
asked Nov 16 '18 at 15:08
Iris_geekIris_geek
227213
227213
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15
add a comment |
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15
add a comment |
1 Answer
1
active
oldest
votes
remove curly braces and try
import NOTIFICATION_ICON from "../../images/images";
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53340469%2funable-to-import-images-from-different-folder-in-react-naitve%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
remove curly braces and try
import NOTIFICATION_ICON from "../../images/images";
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
add a comment |
remove curly braces and try
import NOTIFICATION_ICON from "../../images/images";
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
add a comment |
remove curly braces and try
import NOTIFICATION_ICON from "../../images/images";
remove curly braces and try
import NOTIFICATION_ICON from "../../images/images";
answered Nov 16 '18 at 15:14
LuceferLucefer
1,2611614
1,2611614
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
add a comment |
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
It displays the following error in this case Uncaught Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
– Iris_geek
Nov 16 '18 at 15:17
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
@Iris_geek is that same error u prv got ?
– Lucefer
Nov 16 '18 at 15:24
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
It got resolved. The issue was with the Image tag. I imported Image from naitve-base instead of react-native. That's causing the issue.
– Iris_geek
Nov 16 '18 at 15:25
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
Ok Good to know. Happy coding
– Lucefer
Nov 16 '18 at 15:27
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53340469%2funable-to-import-images-from-different-folder-in-react-naitve%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Does it work when you directly require the image from the source prop?
– Nino9612
Nov 16 '18 at 15:13
No, it still displays the same error
– Iris_geek
Nov 16 '18 at 15:15