React Material UI 图像导入问题
我是 React JS 的新手。我在尝试导入和使用 SVG 图像时收到此错误。
错误:元素类型无效:需要一个字符串(对于内置组件)或一个类/函数(对于复合组件),但得到:未定义。您可能忘记从定义它的文件中导出组件,或者您可能混淆了默认导入和命名导入。
这是我的代码。
import { ReactComponent as RightArrowIcon } from '../public/icons/RightArrow.svg';
function JobFetch() {
return (
<IconButton>
<RightArrowIcon />
</IconButton>
);
}
export default JobFetch;
提前致谢。
I am new to React JS. I am getting this error while I try to import and use an SVG Image.
Error: 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.
Here is my code.
import { ReactComponent as RightArrowIcon } from '../public/icons/RightArrow.svg';
function JobFetch() {
return (
<IconButton>
<RightArrowIcon />
</IconButton>
);
}
export default JobFetch;
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论