import React, {Component} from "react"; import {getAbout} from "../../utils/api"; class Help extends Component { constructor(props: any) { super(props); this.state = { about: "" }; } componentDidMount() { getAbout().then((value)=>{ this.setState({ about:value.data }) }) } render() { return <>

该软件为免费软件,若你目前正在付费使用,请速度举报管理员


项目地址:https://github.com/johlanse/study_xxqg


{this.state.about}

} } export default Help