You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/public/react/src/modules/courses/signin/component/Teacherentry.js

60 lines
978 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React,{ Component } from "react";
import '../css/signincdi.css';
import { Progress } from 'antd';
//条目
class Teacherentry extends Component{
//条目组件
constructor(props){
super(props);
this.state={
}
}
componentDidMount() {
}
componentDidUpdate = (prevProps) => {
}
render(){
return(
<React.Fragment>
<div className="ws100s edu-back-white " >
<div className="ws100s teacherentrydiv ">
<p className="ws100s teachedivp">
2020-03-10第五次签到
</p>
<div className="ws100s sortinxdirection mt17">
<div className="teachedivps">
签到人数
</div>
<div className="progressivps">
<Progress percent={30} />
</div>
<div className="progressivpss">
已签到22 /应签到55
</div>
</div>
<div className="ws100s">
</div>
</div>
</div>
</React.Fragment>
)
}
}
export default Teacherentry;