mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
|
import { Follower } from '../interfaces/follower';
|
||
|
|
||
|
interface Props {
|
||
|
followers: Follower[];
|
||
|
}
|
||
|
|
||
|
export default function FollowerCollection(props: Props) {
|
||
|
return <div>List of followers go here</div>;
|
||
|
}
|