aboutsummaryrefslogtreecommitdiff
path: root/src/routes/profile/ProfileStack.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r--src/routes/profile/ProfileStack.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx
new file mode 100644
index 00000000..9a39aa97
--- /dev/null
+++ b/src/routes/profile/ProfileStack.tsx
@@ -0,0 +1,11 @@
+import {createStackNavigator} from '@react-navigation/stack';
+
+export type ProfileStackParams = {
+ Profile: undefined;
+ SocialMediaTaggs: {
+ socialMediaType: string;
+ socialMediaHandle: string;
+ };
+};
+
+export const ProfileStack = createStackNavigator<ProfileStackParams>();