Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/ten-berries-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/clerk-expo': minor
---

Introduce `<Waitlist />` component for Expo Web
2 changes: 2 additions & 0 deletions packages/expo/src/web/uiComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
SignUpButton as BaseSignUpButton,
UserButton as BaseUserButton,
UserProfile as BaseUserProfile,
Waitlist as BaseWaitlist,
} from '@clerk/clerk-react';
import { Platform } from 'react-native';

Expand Down Expand Up @@ -49,3 +50,4 @@ export const SignOutButton: typeof BaseSignOutButton = WrapComponent(BaseSignOut
export const SignInWithMetamaskButton: typeof BaseSignInWithMetamaskButton =
WrapComponent(BaseSignInWithMetamaskButton);
export const GoogleOneTap: typeof BaseGoogleOneTap = WrapComponent(BaseGoogleOneTap);
export const Waitlist: typeof BaseWaitlist = WrapComponent(BaseWaitlist);
Loading