next js でダイナミックリンクを使いたいImage
。次のJSが提案する
<Image
src="/me.png"
alt="Picture of the author"
width={500}
height={500}
/>
しかし、私はのように使いたい
const imageDynamic = [Image][1]
<Image
src="https://en.wikipedia.org/wiki/Image#/media/File:Image_created_with_a_mobile_phone.png" or {imageDynamic}
alt="Picture of the author"
width={500}
height={500}
/>
image は api から取得されるため、image src は毎回変更されます。次の js Image でリンクを使用できません。次の js Image でリンクを使用することはできますか?