/**
* External dependencies
*/
import { useNavigate } from 'react-router-dom';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { createInterpolateElement } from "@wordpress/element";
/**
* SolidWP dependencies
*/
import { Button, Text } from '@ithemes/ui';
/**
* Internal dependencies
*/
import { StyledCallout, StyledCalloutItem } from './styles';
import { Logo } from '../../../components/icons';
const Empty = () => {
const navigate = useNavigate();
const helpText = createInterpolateElement(
__( 'Looks like you haven\'t set up any email providers yet. Let\'s get started! If you need assistance, here is the documentation link.', 'LION' ),
{
// eslint-disable-next-line jsx-a11y/anchor-has-content
help: ,
}
);
return (
);
};
export default Empty;