diff options
author | Amelia <ameliavoncat@gmail.com> | 2017-04-25 16:21:05 -0700 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-26 01:21:05 +0200 |
commit | fbc509940266dc9de1a197e2261608257396b5a7 (patch) | |
tree | ec705a7e2e3f9545dd64a6484a93e27484be7d0a /app/assets/javascripts/components/features/ui | |
parent | 45b379abac8ad4dbea7210285c8111a9ce2612ad (diff) |
Make the getting started ui more intuitive (#1309)
Diffstat (limited to 'app/assets/javascripts/components/features/ui')
-rw-r--r-- | app/assets/javascripts/components/features/ui/components/column_subheading.jsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/features/ui/components/column_subheading.jsx b/app/assets/javascripts/components/features/ui/components/column_subheading.jsx new file mode 100644 index 000000000..061c8be6c --- /dev/null +++ b/app/assets/javascripts/components/features/ui/components/column_subheading.jsx @@ -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; |