import { FC } from "react" import Alert, { AlertProps } from "./Alert" import styles from "./Loading.module.css" import classNames from "classnames" const BufferAlert: FC = ({ className, canClose }) => { return (
Buffering ...
) } export default BufferAlert