import { Col } from 'web/components/layout/col' import { Modal } from 'web/components/layout/modal' import React from 'react' export const FollowMarketModal = (props: { open: boolean setOpen: (b: boolean) => void title?: string }) => { const { open, setOpen, title } = props return ( ❤️ {title ? title : 'Following questions'} • What is following? You can receive notifications on questions you're interested in by clicking the ❤️ button on a question. • What types of notifications will I receive? You'll receive in-app notifications for new comments, answers, and updates to the question. ) }