import { useLocale } from "@calcom/lib/hooks/useLocale"; const UnAvailableMessage = ({ children, title }: { children: React.ReactNode; title: string }) => (

{title}

{children}
); export const Away = () => { const { t } = useLocale(); return (

{t("user_away_description")}

); }; export const NotFound = () => { const { t } = useLocale(); return (

{t("booker_event_not_found")}

); };