The problem is that the component name starts with a lower case letter.
wrong:
export default function profile() {
return (
<View>
<Text>Hello</Text>
</View>
)
}
correct:
export default function Profile() {
return (
<View>
<Text>Hello</Text>
</View>
)
}