/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Card, CardBody } from '@wordpress/components'; import { Text } from '@woocommerce/experimental'; const NoMatch: React.FC = () => { return (
{ __( 'Sorry, you are not allowed to access this page.', 'woocommerce' ) }
); }; export { NoMatch };