diff options
Diffstat (limited to 'src-migrate/modules/account-activation/index.tsx')
| -rw-r--r-- | src-migrate/modules/account-activation/index.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src-migrate/modules/account-activation/index.tsx b/src-migrate/modules/account-activation/index.tsx new file mode 100644 index 00000000..edcc6652 --- /dev/null +++ b/src-migrate/modules/account-activation/index.tsx @@ -0,0 +1,12 @@ +import { useRouter } from "next/router" +import FormToken from "./components/FormToken" + +const AccountActivation = () => { + return ( + <> + <FormToken /> + </> + ) +} + +export default AccountActivation
\ No newline at end of file |
