angrybeanie-front-end/components/featureimage.js
2022-06-13 18:20:35 +10:00

16 lines
No EOL
384 B
JavaScript
Executable file

import Image from 'next/image';
const FeatureImage = ({ imagedata, basepath }) => (
<div className="featuredimage">
<Image
src={"http://localhost:1337" + imagedata.attributes.url}
height={imagedata.attributes.height}
width={imagedata.attributes.width}
priority={true}
/>
</div>
);
export default FeatureImage