9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
![]() |
const Figure = props => (
|
||
|
<figure>
|
||
|
<img src={props?.src} alt={props?.alt || ''} title={props?.title || ''} className="shadow-md"/>
|
||
|
<figcaption className="text-center italic">{props.title || 'FIXME: No title property set on this image'}</figcaption>
|
||
|
</figure>
|
||
|
)
|
||
|
|
||
|
export default Figure
|