CLOVER Website - v0.3.1
    Preparing search index...

    Variable UserDetailsPanelConst

    UserDetailsPanel: React.FC<
        {
            instructorClasses?: UserClass[];
            isLoading?: boolean;
            setSelectedClass?: (cls: UserClass) => void;
            user: UserData | UserData[] | null;
            userActivity: UserActivityLogItem[];
            userClasses?: UserClass[];
            userRole: UserRole;
        },
    > = ...

    UserDetailsPanel component displays user details, activity, and settings. It allows editing user information and deleting the user.

    The user data to display.

    The role of the user (e.g., admin, instructor).

    The activity log of the user.

    The classes associated with the user.

    The classes the user is teaching.

    Indicates if the data is loading.

    • The rendered component.