angrybeanie-front-end/components/featureimage.js
2022-06-29 21:11:16 +10:00

16 lines
No EOL
351 B
JavaScript
Executable file

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