Refactors the AuthContext.tsx file into smaller, more manageable files to improve code organization and maintainability. The functionality remains the same.
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
|
|
import { useToast as useOriginalToast, toast as originalToast } from '@/hooks/use-toast';
|
|
|
|
export const useToast = useOriginalToast;
|
|
export const toast = originalToast;
|