From fbc509940266dc9de1a197e2261608257396b5a7 Mon Sep 17 00:00:00 2001 From: Amelia Date: Tue, 25 Apr 2017 16:21:05 -0700 Subject: Make the getting started ui more intuitive (#1309) --- .../features/ui/components/column_subheading.jsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/assets/javascripts/components/features/ui/components/column_subheading.jsx (limited to 'app/assets/javascripts/components/features/ui') 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 ( +
+ {text} +
+ ); + }; + +ColumnSubheading.propTypes = { + text: PropTypes.string.isRequired, +}; + +export default ColumnSubheading; -- cgit