mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-25 09:34:16 -05:00
16 lines
267 B
JavaScript
16 lines
267 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
const ColumnSubheading = ({ text }) => {
|
|
return (
|
|
<div className='column-subheading'>
|
|
{text}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ColumnSubheading.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default ColumnSubheading;
|