We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a551ca8 commit d415aabCopy full SHA for d415aab
docs/versioned_docs/version-0.1/auth/clerk.md
@@ -74,13 +74,15 @@ const HomePage = () => {
74
{/* MetaTags, h1, paragraphs, etc. */}
75
76
<p>{JSON.stringify({ isAuthenticated })}</p>
77
- <button onClick={signUp}>sign up</button>
+ <button onClick={() => signUp()}>Sign Up</button>
78
</>
79
)
80
}
81
+
82
+export default HomePage
83
```
84
-Clicking sign up should open a sign-up box and after you sign up, you should see `{"isAuthenticated":true}` on the page.
85
+Clicking Sign Up should open a sign-up box and after you sign up, you should see `{"isAuthenticated":true}` on the page.
86
87
## Customizing the session token
88
0 commit comments