department-of-veterans-affairs/vets-website

View on GitHub
src/applications/income-limits/utilities/customize-title.js

Summary

Maintainability
A
0 mins
Test Coverage
// Used to customize the <title> element in the head of the document
// for accessibility
export const customizeTitle = h1 => {
  if (h1) {
    return `${h1} | Income Limits | Veterans Affairs`;
  }

  return 'Income Limits | Veterans Affairs';
};