Add waitlist signup
This commit is contained in:
parent
b838c786e0
commit
617d93fb48
6 changed files with 199 additions and 8 deletions
|
@ -13,6 +13,7 @@ import * as RepostModal from './Repost'
|
|||
import * as ReportAccountModal from './ReportAccount'
|
||||
import * as DeleteAccountModal from './DeleteAccount'
|
||||
import * as ChangeHandleModal from './ChangeHandle'
|
||||
import * as WaitlistModal from './Waitlist'
|
||||
import {usePalette} from 'lib/hooks/usePalette'
|
||||
import {StyleSheet} from 'react-native'
|
||||
|
||||
|
@ -69,6 +70,9 @@ export const ModalsContainer = observer(function ModalsContainer() {
|
|||
} else if (activeModal?.name === 'change-handle') {
|
||||
snapPoints = ChangeHandleModal.snapPoints
|
||||
element = <ChangeHandleModal.Component {...activeModal} />
|
||||
} else if (activeModal?.name === 'waitlist') {
|
||||
snapPoints = WaitlistModal.snapPoints
|
||||
element = <WaitlistModal.Component />
|
||||
} else {
|
||||
return <View />
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue