dev_auth
parent
8dc47a2157
commit
7191fb89f8
@ -1,30 +1,30 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
import { BrowserRouter as Router, Route, Link, Switch } from "react-router-dom";
|
import { BrowserRouter as Router, Route, Link, Switch } from "react-router-dom";
|
||||||
|
|
||||||
import Loading from '../../Loading';
|
import Loading from '../../Loading';
|
||||||
|
|
||||||
import Loadable from 'react-loadable';
|
import Loadable from 'react-loadable';
|
||||||
|
|
||||||
// import { TPMIndexHOC } from '../tpm/TPMIndexHOC';
|
// import { TPMIndexHOC } from '../tpm/TPMIndexHOC';
|
||||||
|
|
||||||
import { SnackbarHOC, getImageUrl } from 'educoder';
|
import { SnackbarHOC, getImageUrl } from 'educoder';
|
||||||
import LoginRegisterComponent from './LoginRegisterComponent';
|
import LoginRegisterComponent from './LoginRegisterComponent';
|
||||||
import FindPasswordComponent from './FindPasswordComponent';
|
import FindPasswordComponent from './FindPasswordComponent';
|
||||||
|
|
||||||
class LoginRegisterPage extends Component {
|
class LoginRegisterPage extends Component {
|
||||||
render() {
|
render() {
|
||||||
// newMain clearfix
|
// newMain clearfix
|
||||||
return (
|
return (
|
||||||
<div className="">
|
<div className="">
|
||||||
login
|
|
||||||
<LoginRegisterComponent {...this.props} {...this.state}></LoginRegisterComponent>
|
<LoginRegisterComponent {...this.props} {...this.state}></LoginRegisterComponent>
|
||||||
<br></br>
|
<br></br>
|
||||||
<br></br>
|
<br></br>
|
||||||
<FindPasswordComponent {...this.props} {...this.state}></FindPasswordComponent>
|
<FindPasswordComponent {...this.props} {...this.state}></FindPasswordComponent>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default SnackbarHOC() ( ( LoginRegisterPage ));
|
export default SnackbarHOC() ( ( LoginRegisterPage ));
|
||||||
|
Loading…
Reference in new issue