import { Divider, Button } from 'antd'; import { NotificationFilled } from '@ant-design/icons'; import { FC } from 'react'; import styles from './OfflineBanner.module.scss'; export type OfflineBannerProps = { name: string; text: string; }; export const OfflineBanner: FC = ({ name, text }) => (
{name} is currently offline.
{text}
);