1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-23 11:03:50 -05:00

17 lines
294 B
JavaScript
Raw Normal View History

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;