Delete unused ColumnSubheading

This commit is contained in:
Alex Gleason
2022-05-01 12:54:54 -05:00
parent 311ec14200
commit 829a61c3a5

View File

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