"use client"; import { useAuth } from "@/lib/auth-context"; import { Loader2 } from "lucide-react"; interface AuthLoadingProps { children: React.ReactNode; } export function AuthLoading({ children }: AuthLoadingProps) { const { isLoading } = useAuth(); if (isLoading) { return (
Veuillez patienter pendant que nous vérifions votre authentification.