Untitled
unknown
plain_text
a year ago
297 B
12
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