Delete unused ColumnSubheading

This commit is contained in:
Alex Gleason 2022-05-01 12:54:54 -05:00
parent 311ec14200
commit 829a61c3a5
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 0 additions and 16 deletions

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;