/** * @prettier * @flow */ import React from 'react'; import type { Element } from 'react'; import { Wrapper, Left, Right, Earth, Flags, Love, Flag, Logo, Inner, ToolTip } from './styles'; import { goToVerdaccioWebsite } from '../../utils/windows.js'; const renderTooltip = () => ( ); const POWERED_LABEL = 'Powered by'; const MADEWITH_LABEL = ' Made with'; const ON_LABEL = 'on'; const HEARTH_EMOJI = '♥'; const renderRight = (version = window.VERDACCIO_VERSION) => ( {POWERED_LABEL} {`/ ${version}`} ); const renderLeft = () => ( {MADEWITH_LABEL} {HEARTH_EMOJI} {ON_LABEL} {renderTooltip()} ); const Footer = (): Element => ( {renderLeft()} {renderRight()} ); export default Footer;