This commit is contained in:
2023-03-12 00:42:40 +01:00
parent 8732b43c8a
commit 6932610e86
12 changed files with 266 additions and 4 deletions

View File

@ -0,0 +1,9 @@
import React from 'react'
function ImageViewer({key, url}:{key:string, url:string}) {
return (
<img key={key} src={url} />
)
}
export default ImageViewer