You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
417 B
16 lines
417 B
import { useRouter } from "next/router" |
|
import Layout from "app/core/layouts/Layout" |
|
import { SignupForm } from "app/auth/components/SignupForm" |
|
import { BlitzPage, Routes } from "@blitzjs/next" |
|
|
|
const SignupPage: BlitzPage = () => { |
|
const router = useRouter() |
|
|
|
return ( |
|
<Layout title="Sign Up"> |
|
<SignupForm onSuccess={() => router.push(Routes.Home())} /> |
|
</Layout> |
|
) |
|
} |
|
|
|
export default SignupPage
|
|
|