index.jsx 449 B

123456789101112131415161718
  1. import React from "react";
  2. import style from "../index.less";
  3. class WrapModalRight extends React.Component {
  4. constructor(props) {
  5. super(props)
  6. }
  7. render() {
  8. return <div className={style['modalRight']}>
  9. <div className={`${style.modalRightT} clearfix`}>
  10. <span className={style.tip}>已选化验项</span>
  11. <span className={style.btnS}>确认选择</span>
  12. </div>
  13. </div>
  14. }
  15. }
  16. export default WrapModalRight;