import { Gridicon, WordPressLogo } from '@automattic/components'; import { createInterpolateElement } from '@wordpress/element'; import { useI18n } from '@wordpress/react-i18n'; import './login.scss'; export default function MasterbarLogin( { goBackUrl }: { goBackUrl: string } ) { const { __ } = useI18n(); return (
{ goBackUrl && ( { createInterpolateElement( __( ' Go back' ), { arrow: , } ) } ) }
); }