import React from 'react'; import { connect } from 'dva'; import StepOne from './StepOne'; import StepTwo from './StepTwo'; import '../../financialWallet.less'; export default class BusinessWallet extends React.Component { constructor(props, context) { super(props, context); this.state = { status: 0 }; } componentWillMount() { } componentDidMount() { } setStatus(status) { this.setState({ status }); } render() { const { status } = this.state; return (
{ status == 0 && } { status == 1 && }
); } }