-
-
- {'@' + this.props.username}
-
- {'-'}
-
- {this.props.displayName}
-
-
-
-
-
-
- {this.props.email}
-
+const GroupUsersRow = ({
+ username,
+ displayName,
+ email,
+ userId,
+ lastPictureUpdate,
+}: Props) => {
+ return (
+
+
+
+
+
+ {'@' + username}
+
+ {'-'}
+
+ {displayName}
+
+
+
+
+
+
+ {email}
- );
- };
-}
+
+ );
+};
+
+export default React.memo(GroupUsersRow);