department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ask-va/components/FormElementTitle.jsx

Summary

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

const FormElementTitle = ({ title }) => <h3>{title}</h3>;

FormElementTitle.propTypes = {
  title: PropTypes.string,
};

export default FormElementTitle;