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