Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
tower-of-bazel
tower-of-bazel
/
frontend
/
splitfire-desktop
/
app
/
register
/
components
/
signup-success.tsx
Code
Commits
Issues
Pulls
Sessions
CI/CD
feature/share-libs
feature/share-libs
main
tsx
11 lines
230 Bytes
Copy permalink
Copy
Raw
1
"
use client
"
;
2
3
export
default
function
SignupSuccess
()
{
4
return
(
5
<
div
>
6
<
h1
>
Success
</
h1
>
7
<
p
>
Your account has been created successfully.
</
p
>
8
<
p
>
Check your email to confirm your account.
</
p
>
9
</
div
>
10
);
11
}