import React, { Component } from 'react' import * as antd from 'antd' import * as ycore from 'ycore' import YulioID from './components/YulioID.js' import styles from './index.less'; class Login extends Component { constructor(props) { super(props) this.state = { showYulioID: true } } toogleYulioID(){ this.setState({ showYulioID: !this.state.showYulioID }) } render() { return (
{/* */} {/*
this.toogleYulioID()} icon="login" > Login
*/}

{`v${ycore.AppInfo.version}`}

{ycore.DetectNoNStableBuild('TagComponent')}
) } } export default Login