Skip to content

Instantly share code, notes, and snippets.

@DanyF-github
Created March 11, 2022 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanyF-github/86c6bb67a6f9122b01a162fe32a7389f to your computer and use it in GitHub Desktop.
Save DanyF-github/86c6bb67a6f9122b01a162fe32a7389f to your computer and use it in GitHub Desktop.
useEffect(() => {
getToken()
.then((response) => {
setSymblToken(response.data.accessToken);
symbl.init({
accessToken: response.data.accessToken,
});
})
.catch((e) => console.log(e));
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment