index.js 877 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
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;