aboutsummaryrefslogtreecommitdiff
path: root/src/screens/onboarding/index.ts
diff options
context:
space:
mode:
authorHusam Salhab <47015061+hsalhab@users.noreply.github.com>2020-08-06 16:11:11 -0400
committerGitHub <noreply@github.com>2020-08-06 16:11:11 -0400
commit8e62aaa6dc7c61dcba7b9313d0aadcf7f46ce41b (patch)
tree02a92b5f97a7e8d98285b2f50d1524407dc6ebba /src/screens/onboarding/index.ts
parent1279249ee9355f88913578f51e3b0bf7d99672f6 (diff)
[TMA-49] Add static boxes (#28)
* adds BigInput component * removes dummy fields * adds website TaggInput * adds handleWebsiteUpdate() * added website regex * added form * added handleFocusChange() * sends website in request * moves input components to onboarding * allow for empty string in website regex * adds bio regex * adds bio field * added bioRef for focusChange * added react-native-datepicker * moves TaggInput * add imports * add TaggDatePicker * fix typescript interface * remove TouchableComponent type * added date and selectpicker * added date and dropdown * adds momentjs * remove warnings from optional fields * remove debugging console.log * Removes isValidBirthdate * moves @types/react-native-datepicker to devdepnden * update package versioning * fix positioning * added checkpoint * update button styling * update placeholder * linting and other fixes
Diffstat (limited to 'src/screens/onboarding/index.ts')
-rw-r--r--src/screens/onboarding/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/onboarding/index.ts b/src/screens/onboarding/index.ts
index 7a9816e7..e6627ca7 100644
--- a/src/screens/onboarding/index.ts
+++ b/src/screens/onboarding/index.ts
@@ -1,5 +1,6 @@
export {default as Login} from './Login';
-export {default as ProfileOnboarding} from './ProfileOnboarding';
export {default as RegistrationOne} from './RegistrationOne';
export {default as RegistrationTwo} from './RegistrationTwo';
export {default as Verification} from './Verification';
+export {default as Checkpoint} from './Checkpoint';
+export {default as ProfileOnboarding} from './ProfileOnboarding';