about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/ui/components/column_subheading.jsx
blob: 061c8be6c1610437e7cab27572e24411c9c1caa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import PropTypes from 'prop-types';

const ColumnSubheading = ({ text }) => {
    return (
      <div className='column-subheading'>
        {text}
      </div>
    );
  };

ColumnSubheading.propTypes = {
  text: PropTypes.string.isRequired,
};

export default ColumnSubheading;