owncast/web/components/Follower.tsx

10 lines
203 B
TypeScript
Raw Normal View History

import { Follower } from '../interfaces/follower';
interface Props {
follower: Follower;
}
export default function FollowerCollection(props: Props) {
return <div>This is a single follower</div>;
}