feature/share-libs
tsx 11 lines 230 Bytes
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 }