aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Modal.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/Modal.js')
-rw-r--r--vnext/src/components/Modal.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/vnext/src/components/Modal.js b/vnext/src/components/Modal.js
index 296f7911..77ca1a37 100644
--- a/vnext/src/components/Modal.js
+++ b/vnext/src/components/Modal.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import Icon from './Icon';
-class Modal extends React.Component {
+export default class Modal extends React.Component {
render() {
// Render nothing if the "show" prop is false
if (!this.props.show) {
@@ -41,5 +41,3 @@ Modal.propTypes = {
show: PropTypes.bool,
children: PropTypes.node
};
-
-export default Modal; \ No newline at end of file