on react-native init ProjectName, the main app file App.js contains the declaration of a component in the following way:
const App: () => React$Node = () => {...}
What does it mean this instruction?
I mean, I'm used to component defined as const App = () => {...}, so I don't understand, in particular, the expression in between: () => React$Node.