diff options
author | Vitaly Takmazov | 2019-02-20 23:36:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | 9013ea38ca549245442ef18aac199f9431973b60 (patch) | |
tree | 80bf933866e9ed8fcc8bf9527e243d7cb6cff93b /vnext/src/components/Avatar.js | |
parent | 5e73cff8aa8d7b514933413fbeb9ea37d1153ecb (diff) |
Refactor memo components
Diffstat (limited to 'vnext/src/components/Avatar.js')
-rw-r--r-- | vnext/src/components/Avatar.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/vnext/src/components/Avatar.js b/vnext/src/components/Avatar.js index 660847f2..6e56cfc2 100644 --- a/vnext/src/components/Avatar.js +++ b/vnext/src/components/Avatar.js @@ -66,15 +66,6 @@ class Avatar extends React.Component { export default Avatar; -export const AvatarLink = React.memo(props => { - return ( - <Link to={{ pathname: props.link || `/${props.user.uname}/` }}> - <img src={props.user.avatar} alt={`${props.user.uname}`} /> - {props.user.uname} - </Link> - ); -}); - Avatar.propTypes = { user: UserType, link: PropTypes.string, |