import React from 'react';
import PropTypes from 'prop-types';
const ConfirmPageContainerWarning = (props) => {
return (
{props.warning}
);
};
ConfirmPageContainerWarning.propTypes = {
warning: PropTypes.string,
};
export default ConfirmPageContainerWarning;