123456789101112131415161718 |
- import React from "react";
- import style from "../index.less";
- class WrapModalRight extends React.Component {
- constructor(props) {
- super(props)
- }
- render() {
- return <div className={style['modalRight']}>
- <div className={`${style.modalRightT} clearfix`}>
- <span className={style.tip}>已选化验项</span>
- <span className={style.btnS}>确认选择</span>
- </div>
- </div>
- }
- }
- export default WrapModalRight;
|