department-of-veterans-affairs/vets-website

View on GitHub
src/applications/burials-ez/components/ListItemView.jsx

Summary

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

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

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

export default ListItemView;