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