Untitled
Anonymous
plain_text
09/26/2024 2:01 PM
396 B
21
Indexable
import React from 'react'
const SingleImage = (props) => {
console.log("url is ",props.url);
return (
<img src={props.url} alt={props.index} key={props.index} className={`w-full h-full rounded-3xl object-cover object-center ${props.Style}`}/>
)
}
export default SingleImageEditor is loading...
Leave a Comment