import React, { useCallback } from 'react'; import { Icon, For } from 'components'; import { FormattedMessage as T } from 'react-intl'; import withAuthenticationActions from 'containers/Authentication/withAuthenticationActions'; import withAuthentication from 'containers/Authentication/withAuthentication'; import footerLinks from 'config/footerLinks'; import { compose } from 'utils'; function FooterLinkItem({ title, link }) { return (
{ title }
); } /** * Wizard setup left section. */ function SetupLeftSection({ // #withAuthenticationActions requestLogout, // #withAuthentication currentOrganizationId }) { const onClickLogout = useCallback(() => { requestLogout(); }, [requestLogout]); return (

Oragnization ID: { currentOrganizationId },

{'+21892-791-8381'}

) } export default compose( withAuthenticationActions, withAuthentication(({ currentOrganizationId }) => ({ currentOrganizationId })), )(SetupLeftSection);