2020-03-27 13:59:38 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2022-01-10 14:17:52 -08:00
|
|
|
import React from 'react';
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
const ColumnSubheading = ({ text }) => {
|
|
|
|
return (
|
|
|
|
<div className='column-subheading'>
|
|
|
|
{text}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColumnSubheading.propTypes = {
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ColumnSubheading;
|