Skip to content

Commit

Permalink
chore(docs): update react web Authenticator hideSignUp example (#6290)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebpollman authored Jan 13, 2025
1 parent f575deb commit 6a26d84
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ The Authenticator has an option to hide the sign up page including the `Create A
```
</InlineFilter>
<InlineFilter filters={['react']}>
```tsx{3}
<Authenticator hideSignUp />
**`Authenticator` Example:**
```tsx{3}
<Authenticator hideSignUp>
<App />
</Authenticator>
```

**`withAuthenticator` Example:**
```tsx{3}
withAuthenticator(App, { hideSignUp: true });
```
</InlineFilter>
<InlineFilter filters={['vue']}>
Expand Down

0 comments on commit 6a26d84

Please sign in to comment.