import React from 'react'; import PropTypes from 'prop-types'; import {Alert, Collapse} from 'reactstrap'; export class WarningPopup extends React.Component { render() { return ( {this.props.text} ); } } WarningPopup.propTypes = { text: PropTypes.string.isRequired, shown: PropTypes.bool.isRequired };