summaryrefslogtreecommitdiff
path: root/src-migrate/modules/account-activation/index.tsx
blob: 97c969538232620ea16edd0355114e42d874d067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { useRouter } from "next/router"
import FormToken from "./components/FormToken"
import FormEmail from "./components/FormEmail"
import FormOTP from "./components/FormOTP"

const AccountActivation = () => {
  return (
    <>
      <FormEmail />
      <FormToken />
      <FormOTP />
    </>
  )
}

export default AccountActivation