/**
* WordPress dependencies
*/
import { PanelRow } from '@safe-wordpress/components';
import { _x } from '@safe-wordpress/i18n';
/**
* External dependencies
*/
import { compactInteger } from '@nab/i18n';
export type StatsProps = {
readonly clicks?: number;
readonly views?: number;
};
export const Stats = ( { clicks, views }: StatsProps ): JSX.Element => (
<>
{ _x( 'Page Views', 'text', 'nelio-ab-testing' ) }
{ 'undefined' !== typeof views ? compactInteger( views ) : '-' }
{ _x( 'Total Click Count', 'text', 'nelio-ab-testing' ) }
{ 'undefined' !== typeof clicks
? compactInteger( clicks )
: '-' }
>
);