/**
* @module Modals/LiveStarted
*/
import React from 'react';
/**
* @param {object} props
* @returns {view}
*/
export default (props) => (
<div className="modals bets-modal">
<div className="bets-modal">
<div className="modal__box">
<div className="modal__box-content">
<p className="modal__box-heading">You reached the maximum number of selection allowed</p>
<div className="btn-box d-flex">
<button
className="btn btn-secondary ml-4 mt-0 btn-block btn-sm"
onClick={props.closeModal}
type="button"
>
OK
</button>
</div>
</div>
</div>
</div>
<div className="modal-mask" onClick={props.closeModal} />
</div>
);