Manav Rathi 1 年之前
父节点
当前提交
ae061d2a44
共有 1 个文件被更改,包括 18 次插入1 次删除
  1. 18 1
      web/apps/staff/src/App.tsx

+ 18 - 1
web/apps/staff/src/App.tsx

@@ -1,11 +1,28 @@
 import React from "react";
+import { getUserDetails } from "./services/support-service";
 import S from "./utils/strings";
 
 export const App: React.FC = () => {
+    const handleClick = () => {
+        const authToken = "xxx";
+        getUserDetails(authToken)
+            .then((userDetails) => {
+                console.log("Fetched user details", userDetails);
+            })
+            .catch((e) => {
+                console.error("Failed to fetch user details", e);
+            });
+    };
+
     return (
         <div>
             <h1>{S.hello}</h1>
-            <a href="https://help.ente.io">help.ente.io</a>
+            <p>
+                <a href="https://help.ente.io">help.ente.io</a>
+            </p>
+            <p>
+                <button onClick={handleClick}>Do something</button>
+            </p>
         </div>
     );
 };