aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/ModalTitle.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/react/ModalTitle.js')
-rw-r--r--src/react/ModalTitle.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/react/ModalTitle.js b/src/react/ModalTitle.js
deleted file mode 100644
index b48cc8a..0000000
--- a/src/react/ModalTitle.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-
-const Title = ({children, className}) => (
- <div className={`title ${className}`} >
- {children}
- </div>
-);
-
-Title.PropTypes = {
- children: PropTypes.node,
- className: PropTypes.string
-};
-
-Title.defaultProps = {
- className: ''
-};
-
-export default Title; \ No newline at end of file