import React from 'react' import { Link } from 'react-router-dom' const Main = ({title,tag,bgimg,paragraph,no}) => { return ( <> {no === 1 &&
image image image

{title}

{paragraph}

  • Home
  • »
  • {tag}
} {no === 2 &&
image image image

{title}

{paragraph}

  • Home
  • »
  • {tag}
} {no === 3 &&
image image image

{title}

{paragraph}

  • Home
  • »
  • {tag}
} {no === 4 &&
image image image

{title}

{paragraph}

  • Home
  • »
  • {tag}
} {no === 5 &&
image image image

{title}

{paragraph}

  • Home
  • »
  • {tag}
} ) } export default Main