import * as React from 'react'; import { BrowserRouter as Router, Switch, Redirect, Route, Link } from 'react-router-dom'; import { Button, Row, Col,Pagination } from 'antd'; import './App.scss'; export default class App extends React.Component { constructor(props) { super(props); this.state = { name: '飞鼠', age: 18 }; } heandleClick() { this.setState({ age: this.state.age + 1 }); } onValueChange() { this.setState({ age: this.state.age + 1 }); } render() { return (
I am {this.state.age}