[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/web-mode a6f495474f 2/2: Update 1310.jsx
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/web-mode a6f495474f 2/2: Update 1310.jsx |
Date: |
Thu, 26 Dec 2024 07:01:21 -0500 (EST) |
branch: elpa/web-mode
commit a6f495474ff02e1a3d367cd2df6b9ab11e2545dd
Author: fxbois <fxbois@gmail.com>
Commit: fxbois <fxbois@gmail.com>
Update 1310.jsx
---
issues/1310.jsx | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/issues/1310.jsx b/issues/1310.jsx
index 10c4912255..38bdeaee5a 100644
--- a/issues/1310.jsx
+++ b/issues/1310.jsx
@@ -8,4 +8,19 @@ function App() {
</div>
</>
);
-}
+};
+
+const Translations = () => {
+ const { t } = useTranslation("coi-platform-translations", {
+ keyPrefix: keyPrefixes.main,
+ });
+ return (
+ <>
+ <Alert severity="info" icon={false}>
+ <AlertTitle>{t("info_title")}</AlertTitle>
+ <Typography variant="body2">{t("info_description")}</Typography>
+ </Alert>
+ <EditForm />
+ </>
+ );
+};