mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
3 lines
169 B
TypeScript
3 lines
169 B
TypeScript
export const useIsLoggedIn = () => useState<boolean>('isLoggedIn', () => false)
|
|
export const useRedirectUrl = () =>
|
|
useState<string | null>('redirectUrl', () => null)
|