More blank components and stories to be filled in

This commit is contained in:
Gabe Kangas
2022-04-28 14:36:05 -07:00
parent e0c073171d
commit e5d3b0e4ee
16 changed files with 194 additions and 36 deletions

View File

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