cls.tsx 629 B

12345678910111213141516171819
  1. import {t} from 'sentry/locale';
  2. export function ClsDescription() {
  3. return (
  4. <div>
  5. <h3>{t('Cumulative Layout Shift (CLS)')}</h3>
  6. <p>
  7. {t(
  8. `Cumulative Layout Shift (CLS) is a stable Core Web Vital metric. It is an important, user-centric metric for measuring visual stability because it helps quantify how often users experience unexpected layout shifts—a low CLS helps ensure that the page is delightful.`
  9. )}
  10. </p>
  11. <p>
  12. <a href="https://web.dev/cls/" target="_blank" rel="noreferrer">
  13. {t('Learn more about CLS')}
  14. </a>
  15. </p>
  16. </div>
  17. );
  18. }