import React from 'react'; import PropTypes from 'prop-types'; import { Button } from 'plugin-api/beta/client/components/ui'; import t from 'coral-framework/services/i18n'; const SignInButton = ({ currentUser, showSignInDialog }) => (
{!currentUser ? ( ) : null}
); SignInButton.propTypes = { currentUser: PropTypes.object, showSignInDialog: PropTypes.func, }; export default SignInButton;