// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import PropTypes from 'prop-types'; import {FormattedMessage} from 'react-intl'; import FormattedMarkdownMessage from 'components/formatted_markdown_message.jsx'; import TutorialTip from './tutorial_tip'; const MenuTutorialTip = ({toggleFunc, onBottom}) => { const screens = []; screens.push(

); let placement = 'right'; let arrow = 'left'; if (onBottom) { placement = 'bottom'; arrow = 'up'; } return (
); }; MenuTutorialTip.propTypes = { toggleFunc: PropTypes.func, onBottom: PropTypes.bool.isRequired, }; export default MenuTutorialTip;