import { CreateButton } from "@/components/ds/admin/create-button"; import { useTranslate } from "ra-core"; import useAppBarHeight from "../misc/useAppBarHeight"; import { ContactImportButton } from "./ContactImportButton"; export const ContactEmpty = () => { const appbarHeight = useAppBarHeight(); const translate = useTranslate(); return (
{translate("crm.contact.empty.title")}
{translate("crm.contact.empty.title")}

{translate("crm.contact.empty.description")}

); };