department-of-veterans-affairs/vets-website

View on GitHub
src/applications/pensions/components/ListItemView.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

const ListItemView = ({ title }) => {
  return (
    <h3 className="vads-u-font-size--h5 vads-u-margin-y--1 vads-u-margin-right--2">
      {title}
    </h3>
  );
};

ListItemView.propTypes = {
  title: PropTypes.string.isRequired,
};

export default ListItemView;