department-of-veterans-affairs/vets-website

View on GitHub
src/applications/caregivers/components/Abbreviation.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';
import content from '../locales/en/content.json';

const Abbr = ({ abbrKey }) => (
  <dfn>
    <abbr title={content[`dfn--${abbrKey}-title`]}>
      {content[`dfn--${abbrKey}-abbr`]}
    </abbr>
  </dfn>
);

Abbr.propTypes = {
  abbrKey: PropTypes.string,
};

export default Abbr;