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

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

export default AccountActivation