It is unclear to me how to dynamically impport an image now that Astro.resolve has been removed. I have a content article in a folder. the image in question is in the same folder. I'm trying to use the image in a component. I've passed the image file name to the component as a prop. Here is the code that does not work:
const author = Astro.props.author
const authorType = Astro.props.authorType
const authorBio = Astro.props.authorBio
const link = Astro.props.authorLink
const thumb = Astro.props.image
<div class="author-bio">
<img src={thumb} class="author-bio-thumbnail float float-right" alt={author} width="200" />
<div class="author-bio-box">
<div class="author-bio-title">{author}</div>
<div class="author-bio">{authorBio}</div>
</div>
</div>