import { __ } from '@wordpress/i18n'; type PreviewCodeSamplesProps = { injectedCss: string; htmlSample: string; injectedCssId: string; htmlSampleId: string; rows?: number; injectedCssLabel?: string; htmlSampleLabel?: string; }; const PreviewCodeSamples = ( { injectedCss, htmlSample, injectedCssId, htmlSampleId, rows = 12, injectedCssLabel = __( 'Injected CSS', 'airygen-seo' ), htmlSampleLabel = __( 'HTML Sample', 'airygen-seo' ), }: PreviewCodeSamplesProps ) => (