import React, { FC, useState } from 'react'; import { View } from 'react-native'; import { NavigationProp } from '@react-navigation/native'; import { PageWrapper, Header, Button, BigText, CheckBox, Input } from '../../../components'; import { NAVIGATION_PAGES } from '../../../types'; type Props = { navigation: NavigationProp; }; const JoinUsScreen: FC = ({ navigation }) => { const [agreed, setAgreed] = useState(false); return (
Join us. It's free! {}} placeholder={'Text'} header={'Username'} /> {}} placeholder={'Email'} inputMode={'email'} header={'Email address'} /> {}} placeholder={'Text'} isPrivate={true} header={'Password'} /> {}} placeholder={'Text'} isPrivate={true} header={'Confirm password'} /> setAgreed(b)} value={agreed} /> ); }; export default JoinUsScreen;