12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { t } from "../../i18n";
|
|
|
|
export const TTDWelcomeMessage = () => {
|
|
return (
|
|
<div className="chat-interface__welcome-screen__welcome-message">
|
|
<h3>{t("chat.placeholder.title")}</h3>
|
|
<p>{t("chat.placeholder.description")}</p>
|
|
<p>{t("chat.placeholder.hint")}</p>
|
|
</div>
|
|
);
|
|
};
|