blob: ffd30a499212e46f8522f442eea6dc1a63dbd25d (
plain) (
blame)
1
2
3
4
5
6
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>
}
|