// @flow import Button from '@atlaskit/button'; import React, { Component } from 'react'; import Tooltip from '@atlaskit/tooltip'; import { translate } from '../../base/i18n'; /** * The type of the React {@code Component} props of {@link JoinButton}. */ type Props = { /** * The function called when the button is pressed. */ onPress: Function, /** * Invoked to obtain translated strings. */ t: Function }; /** * A React Component for joining an existing calendar meeting. * * @extends Component */ class JoinButton extends Component { /** * Implements React's {@link Component#render}. * * @inheritdoc */ render() { const { onPress, t } = this.props; return ( ); } } export default translate(JoinButton);