import React, {Component} from 'react'; import LoginInput from './LoginInput'; import CloudConfig from "./CloudConfig"; import AccountConfig from "./AccountConfig"; import {Layout} from 'antd'; const {Content} = Layout; class Login extends Component { constructor() { super(); this.state = { userID: '' } } getUserId = (id) => { this.setState({ userID: id }) }; render() { return (
{ this.props.match.params.setting ? this.props.match.params.setting === 'account' ? : : }
) } } export default Login;