aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-04-15 16:54:01 -0400
committerIvan Chen <ivan@tagg.id>2021-04-15 16:54:01 -0400
commit658bf732e05c183d311b62a52be3729c942c9eb9 (patch)
tree995d33752ff5454fb3ea70dd847e0bb4ee27cf1d /src
parentbf85e56a4f8e0f16a446ec7df8d7f4eba624c213 (diff)
moved update required to component/onboarding
Diffstat (limited to 'src')
-rw-r--r--src/components/onboarding/UpdateRequired.tsx (renamed from src/screens/onboarding/UpdateRequired.tsx)2
-rw-r--r--src/components/onboarding/index.ts1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/onboarding/UpdateRequired.tsx b/src/components/onboarding/UpdateRequired.tsx
index adf7ba71..93e4e36d 100644
--- a/src/screens/onboarding/UpdateRequired.tsx
+++ b/src/components/onboarding/UpdateRequired.tsx
@@ -1,7 +1,7 @@
import React from 'react';
import {Image, Linking, Modal, StyleSheet, View} from 'react-native';
import {Text} from 'react-native-animatable';
-import {CenteredView, TaggSquareButton} from '../../components';
+import {CenteredView, TaggSquareButton} from '..';
import {normalize, SCREEN_WIDTH} from '../../utils';
interface UpdateRequiredProps {
diff --git a/src/components/onboarding/index.ts b/src/components/onboarding/index.ts
index fdb85090..aad77f96 100644
--- a/src/components/onboarding/index.ts
+++ b/src/components/onboarding/index.ts
@@ -11,3 +11,4 @@ export {default as SocialMediaLinker} from './SocialMediaLinker';
export {default as LinkSocialMedia} from './LinkSocialMedia';
export {default as MomentCategory} from './MomentCategory';
export {default as UniversitySelection} from './UniversitySelection';
+export {default as UpdateRequired} from './UpdateRequired';