import React,{ Component } from "react"; import '../../css/signincdi.css'; import axios from 'axios'; import Teacherentry from "../Teacherentry"; import NoneDatas from '../NoneDatas'; import Listjihe from "../../../../question/component/Listjihe"; //在线学习 class Teaccomponent extends Component{ //教师正在签到 constructor(props){ super(props); this.state={ mydatas:[] } } componentDidMount() { this.setState({ mydatas:this.props.datas }) } componentDidUpdate = (prevProps) => { } render(){ let mydatas=this.props.datas?this.props.datas:[]; return(
{ mydatas.length>0? mydatas.map((object, index) => { return ( ) }) : }
) } } export default Teaccomponent;