Untitled

 avatar
unknown
plain_text
10 months ago
297 B
8
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 SingleImage
Editor is loading...
Leave a Comment