/* eslint-disable react/no-unescaped-entities */ import { Space } from 'antd'; import { FC } from 'react'; import styles from './FollowModal.module.scss'; import { FollowForm } from './FollowForm'; export type FollowModalProps = { handleClose: () => void; account: string; name: string; }; export const FollowModal: FC = ({ handleClose, account, name }) => (
By following this stream you'll get notified on the Fediverse when it goes live. Now is a great time to  learn about the Fediverse  if it's new to you.
logo
{name}
{account}
);