owncast/web/components/FollowersCollection.tsx

10 lines
206 B
TypeScript
Raw Normal View History

import { Follower } from '../interfaces/follower';
interface Props {
followers: Follower[];
}
export default function FollowerCollection(props: Props) {
return <div>List of followers go here</div>;
}