/**
 * A simple Card component
 *
 * Used to display grouped information, with an optional title
 * @param {object} props component's customisable properties
 * @param {string} [props.title] title of the card
 * @returns {React.ReactNode} content of the Card
 */
function Card({ title }) {
    // ...
}