This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-04-25 16:21:05 -07:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
const ColumnSubheading = ({ text }) => {
|
2017-05-02 17:04:16 -07:00
|
|
|
return (
|
|
|
|
<div className='column-subheading'>
|
|
|
|
{text}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
2017-04-25 16:21:05 -07:00
|
|
|
|
|
|
|
ColumnSubheading.propTypes = {
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ColumnSubheading;
|