import { height } from 'components/OpenGraphImage' import Image from 'next/image' import React, { useEffect, useState } from 'react' export default function CardContentStory({ props }) { let { title, subtitle, text, url } = props return (
image description

{title}

{text.map((content, i) => { return (

{content}

) })}
) } export {}