Archived
2
0
Fork 0

Make the getting started ui more intuitive (#1309)

This commit is contained in:
Amelia 2017-04-25 16:21:05 -07:00 committed by Eugen Rochko
parent 45b379abac
commit fbc5099402
3 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,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;