14 lines
No EOL
334 B
JavaScript
Executable file
14 lines
No EOL
334 B
JavaScript
Executable file
import Image from 'next/image';
|
|
|
|
const FeatureImage = ({ imagedata, basepath }) => (
|
|
<div className="featuredimage">
|
|
<Image
|
|
src={basepath + imagedata.src}
|
|
height={imagedata.height}
|
|
width={imagedata.width}
|
|
priority={true}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
export default FeatureImage |