import React from 'react' import styles from './index.less' import { clientInfo, GUID, package_json } from 'core' import { Monitor, Package, Radio, Layers } from 'components/Icons' import * as antd from 'antd' export default class App_About extends React.Component { renderStableTag() { return {clientInfo.buildStable? "Stable" : "Not Stable"} } render() { return (

{clientInfo.siteName}

{GUID}
{clientInfo.os.toString()} v{clientInfo.version} {clientInfo.packageStage} Render with {clientInfo.layout} {this.renderStableTag()}
) } }