0
0
KKKhalid Khan
The above code defines an interface named AppProps and defines a variable named App that is of type React.SFC<AppProps>. The code inside the curly braces () is the actual code that is executed when the App variable is used. This code simply returns, which means that the code inside the curly braces does not affect the rest of the code inside the function.
Library: react-native
Shortcut: reactnative.functionalcomp.stateless
import * as React from 'react';
interface AppProps {
}
const App: React.SFC<AppProps> = (props) => {
return ;
};