import React from 'react'; import { SendButton } from './buttons'; interface IMessageBoxRightButtons { theme: string; showSend: boolean; submit(): void; } const RightButtons = React.memo(({ theme, showSend, submit }: IMessageBoxRightButtons) => { if (showSend) { return ; } return null; }); export default RightButtons;