79563763

Date: 2025-04-09 07:58:36
Score: 0.5
Natty:
Report link

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>
  )
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yücel