// import React from 'react'; export default function ReactPost(props: { title?: string, description?: string, pictureLink?: string, selected?: boolean, handleClick: () => void }) { return (
{props.title}
{props.title}

{props.description}

); }