Skip to content

Commit

Permalink
Merge branch 'console' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
HadiKhai authored Nov 28, 2024
2 parents 284c8ba + 44029d7 commit ef3623e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface FollowersTabProps {
ens: string;
address: string;
}

export const FollowersTab: React.FC<FollowersTabProps> = ({ ens, address }) => {
const [nbOfCardsPerFollowersRow, setNbOfCardsPerFollowersRow] = useState(0);
const followingContainerRef = useRef<HTMLDivElement>(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface FollowingTabProps {
ens: string;
address: string;
}

export const FollowingTab: React.FC<FollowingTabProps> = ({ ens, address }) => {
const [nbOfCardsPerFollowingRow, setNbOfCardsPerFollowingRow] = useState(0);
const followingContainerRef = useRef<HTMLDivElement>(null);
Expand Down

0 comments on commit ef3623e

Please sign in to comment.