rd-web/src/auth.js
ROSHAN GARG b050c15cec
Some checks are pending
NPM Installation / build (16.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (16.x, windows-latest) (push) Waiting to run
NPM Installation / build (17.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (17.x, windows-latest) (push) Waiting to run
NPM Installation / build (18.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (18.x, windows-latest) (push) Waiting to run
rd init
2024-09-13 10:19:04 +05:30

11 lines
218 B
JavaScript

export const isAutheticated = () => {
if (typeof window == 'undefined') {
return true
}
if (localStorage.getItem('authToken')) {
return localStorage.getItem('authToken')
} else {
return false
}
}