16 lines
No EOL
382 B
JavaScript
Executable file
16 lines
No EOL
382 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 |