import React from 'react'; import { FunctionComponent } from 'react'; import { Card, Col, Row } from 'react-bootstrap'; type CardProps = { title: string, content: string } export const HCard: FunctionComponent = ({ title, content }) =>

{title}

{content}
Last updated 3 mins ago