import React from 'react'; import { FunctionComponent } from 'react'; import { Card, Col, Row, Toast } from 'react-bootstrap'; type ToastProps = { title: string, content?: string } export const FullToast: FunctionComponent = ({ title, content }) => {title} 10 mins ago {content} export const HeaderToast: FunctionComponent = ({ title }) => {title} 10 mins ago export default FullToast;