Normal Function vs Arrow Function
Normal Function:
function App() {
return {
// Function body goes here
};
} // The function name `App` holds a reference to the function
Arrow Function:
const App = () => {
<View></View>
} // The variable name `App` holds a reference to t...
maroofs.hashnode.dev2 min read