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