logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

column_subheading.js (294B)


  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. const ColumnSubheading = ({ text }) => {
  4. return (
  5. <div className='column-subheading'>
  6. {text}
  7. </div>
  8. );
  9. };
  10. ColumnSubheading.propTypes = {
  11. text: PropTypes.string.isRequired,
  12. };
  13. export default ColumnSubheading;