Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
import React from 'react';
import Login from './Auth/Login';
import AccountNew from './Auth/AccountNew';
import Account from './Auth/Account';
import Password from './Auth/Password';
import PasswordReset from './Auth/PasswordReset';
import Reset from './Auth/Reset';
import Msg from './Auth/Msg';
const Auth = () => (
<div>
<Login />
<AccountNew />
<Account />
<Password />
<Reset />
<PasswordReset />
<Msg />
</div>
);
export default Auth;