import { Layout } from "antd"; import { useTranslation } from "react-i18next"; const LinearChatIcon = () => ( ); export const EmptyChat = () => { const { t } = useTranslation(); return ( {t("placeholder.emptyChat")} ); };