|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const ColumnSubheading = ({ text }) => {
|
|
return (
|
|
<div className='column-subheading'>
|
|
{text}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ColumnSubheading.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default ColumnSubheading;
|