diff options
Diffstat (limited to 'src/screens/Profile.tsx')
-rw-r--r-- | src/screens/Profile.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/screens/Profile.tsx b/src/screens/Profile.tsx new file mode 100644 index 000000000..ffd30a499 --- /dev/null +++ b/src/screens/Profile.tsx @@ -0,0 +1,7 @@ +import React from 'react' +import {Text} from 'react-native' +import type {RootStackScreenProps} from '../routes/types' + +export const Profile = ({route}: RootStackScreenProps<'Profile'>) => { + return <Text>This is {route.params.name}'s profile</Text> +} |