You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
294 B

  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. const ColumnSubheading = ({ text }) => {
  4. return (
  5. <div className='column-subheading'>
  6. {text}
  7. </div>
  8. );
  9. };
  10. ColumnSubheading.propTypes = {
  11. text: PropTypes.string.isRequired,
  12. };
  13. export default ColumnSubheading;