import React, { Component } from 'react'; import ReactDOM from 'react-dom'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; import ChildForgotPassword from './forgot_password'; import ChildForgotPasswordComplete from './forgot_password/complete'; import ChildForgotPasswordReset from './forgot_password/reset'; import ChildLogin from './login'; import ChildSignUpTemporary from './register/temporary'; import ChildSignUp from './register'; import ChildSignUpComplete from './register/complete'; import ChildSignUpError from './register/error'; import ChildWithdrawal from './withdrawal_complete'; export default class ChildAuth extends Component { render() { return (
); } } // ---------------------------------------------------------------------- if(document.getElementById('c-auth')){ ReactDOM.render( , document.getElementById('c-auth') ) }