import React from 'react'; type CardProps = { /** Title of the card. */ title: string; paragraph?: string; footer: string | number | any[]; size: 'big' | 'small'; }; /** A typescript test Card component. */ export const TSCard = ({ title, paragraph }: CardProps) => (

{title}

{paragraph}

);