import React, { Component } from 'react'; import Container from '../container' import './index.scss' class Project extends Component { render() { return ( <Container user={this.props.user}> <div id={'project'}> <table border={1}> <thead> <tr> <th>项目资料</th> <th>项目进度</th> <th>项目成绩</th> </tr> </thead> <tbody> <tr> <td className={'pc-tip'}>请前往PC端下载</td> <td> <span className={'pc-tip'}>请前往PC端提交</span><br/> <span>2020-02-28截止</span> </td> <td>2020-XX-XX公布</td> </tr> </tbody> </table> </div> </Container> ); } } export default Project;