Hook result with data as an array of SoundCloudUser followers.
import { useMeFollowers } from "soundcloud-api-ts-next";
function MyFollowers() {
const { data: followers, loading } = useMeFollowers();
if (loading) return <p>Loading...</p>;
return <p>{followers?.length} followers</p>;
}
Fetch the current authenticated user's followers.