tasko-frontend/pages/register.js

8 lines
155 B
JavaScript
Raw Normal View History

import UserAuthForm from './components/UserAuthForm';
2020-01-14 09:53:40 +01:00
const Register = () => {
return <UserAuthForm formType="register"/>
2020-01-14 09:53:40 +01:00
}
export default Register;