fetch
This commit is contained in:
parent
d9d03d8451
commit
ae061d2a44
1 changed files with 18 additions and 1 deletions
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue