where to add the aria-modal attribute?
问题 So I have a project in React where the modal does not have the proper markup. I know I need to have aria-modal="true" , but I am not 100% sure if this attribute is added everywhere I have a className . So for example: renderModal() { return ( <Modal isOpen={this.props.isOpen} onRequestClose={this.toggleModal} contentLabel="Address Book" className={this.props.parentClassName ? this.props.parentClassName + " address-modal" : "address-modal"} role="dialog" > {this.renderAddressForm()} </Modal> )