Make the getting started ui more intuitive (#1309)
This commit is contained in:
parent
45b379abac
commit
fbc5099402
3 changed files with 28 additions and 2 deletions
|
@ -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;
|
Reference in a new issue