I am working on react native using typescript.
How to pass Navigation in interface, and below code snippet is Functional component or class component. What Reach.FC indicates ?
interface HomeScreenProps {}export const HomeScreen: React.FC<HomeScreenProps> = ({}) => (<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}><Text>Home!</Text></View>)