dograh/ui/src/lib/auth/hooks/useAuth.ts
Abhishek a7f2238044
feat: Update Dograh's UI Design (#67)
* feat: create app sidebar and update layout

* fix: fix loading errors

* fix: fix stack auth hydration issue

* fix: fix design for create-workflow

* fix: fix service configuration page design

* Add header for workflow detail

* feat: fix workflow editor design

* Fix css classes

* Fix callback status parsing for Vobiz

* Fix filter and remove gender service
2025-11-29 15:39:57 +05:30

7 lines
133 B
TypeScript

'use client';
import { useAuthContext } from '../providers/AuthProvider';
export function useAuth() {
return useAuthContext();
}