From 9013ea38ca549245442ef18aac199f9431973b60 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 20 Feb 2019 23:36:30 +0300 Subject: Refactor memo components --- vnext/src/components/Avatar.js | 9 --------- vnext/src/components/Button.js | 4 +++- vnext/src/components/Contact.js | 10 ++++++---- vnext/src/components/Settings.js | 2 +- 4 files changed, 10 insertions(+), 15 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 ( - - {`${props.user.uname}`} - {props.user.uname} - - ); -}); - Avatar.propTypes = { user: UserType, link: PropTypes.string, diff --git a/vnext/src/components/Button.js b/vnext/src/components/Button.js index 4152108b..18cab0a7 100644 --- a/vnext/src/components/Button.js +++ b/vnext/src/components/Button.js @@ -2,8 +2,10 @@ import React from 'react'; import './Button.css'; -export default function Button(props) { +function Button(props) { return (