Arrow Function in React JS
What is Arrow function?
arrow function allow us to write shorter function syntax.
const App = () => <h1>aroow function</h1>
it gets shorter, if the function has only one statement, and the statement returns a value, you can remove the brackets and t...
megha17.hashnode.dev1 min read