Skip to content
Snippets Groups Projects
Unverified Commit 7fd9ae7d authored by Iain Maitland's avatar Iain Maitland
Browse files

props

parent 7b6e151e
No related branches found
No related tags found
No related merge requests found
import React from 'react';
import PropTypes from 'prop-types';
import Modal from 'react-overlays/lib/Modal';
import Transition from 'react-overlays/lib/Transition';
......@@ -33,8 +34,8 @@ const Reveal = ({children, onHide, show}) => {
}
Reveal.propTypes = {
show: React.PropTypes.bool.isRequired,
onHide: React.PropTypes.func.isRequired,
show: PropTypes.bool.isRequired,
onHide: PropTypes.func.isRequired,
};
export default Reveal;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment