forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-20 54321380dfe9628f79b36e909b826cf921098a7d
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
import React from 'react';
import { Input, Button, DatePicker, Divider, message, Popconfirm, Select, Badge } from 'antd';
 
export default class SignIn extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            data: [],
           
        };
    }
 
    componentDidMount() {
 
        document.title = '签到上墙';
        // this.getData();
    }
 
    getData = () => {
        
    }
   
    render() {
        
        const { data, loading, resetKey } = this.state;
        return (
            <div className="app-page">
              签到上墙
            </div>
        );
    }
 
}