Untitled

mail@pastecode.io avatar
unknown
plain_text
19 days ago
297 B
3
Indexable
Never
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 SingleImage
Leave a Comment