我试图利用下层/高射线图像。 然而,在我试图这样做的时候,我有以下错误:
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
Check the render method of `ImagePage`
图像学源代码:
import React from react ;
import Image from next/image ;
import { Paper } from @mui/material ;
import Img from ../../images/image.svg ;
const ImagePage = () => {
return (
<div>
<Paper>
<Image src={Img} />
</Paper>
</div>
);
};
export default ImagePage;
如果我在四舍五入点之间有任何其它部分,我看不到这一错误。 形象的道路是正确的。
难道我能以不同的方式使造成这一错误的形象被抛弃吗?