• Not a property of the component

() => {
  if (!props.showImage) {
    return (
      <RelatedTeaser
        prefix={props.prefix}
        title={props.title}
        link={props.link}
        image={props.image}
        articleType={props.articleType}
        duration={props.duration}
    />)
  }


  return (
    <RelatedTeaser
      prefix={props.prefix}
      title={props.title}
      link={props.link}
      image={
        <img
          src="https://picsum.photos/id/498/600/400"
          alt="image of a chameleon"
        />
      }
      articleType={props.articleType}
      duration={props.duration}
    />
  )
}