Skip to content

Instantly share code, notes, and snippets.

@Ah-ae
Created March 5, 2023 14:28
Show Gist options
  • Save Ah-ae/53022dcf70f81b205eac77f2731f7fee to your computer and use it in GitHub Desktop.
Save Ah-ae/53022dcf70f81b205eac77f2731f7fee to your computer and use it in GitHub Desktop.
import { useContext } from 'react';
import { userContext } from '../App.js';
function useAccessToken() {
const { tokens } = useContext(userContext);
const accessToken = tokens && tokens.accessToken;
return accessToken;
}
export default useAccessToken;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment