React setup : the App component
Finally, let's get some real visible code going by starting a new file src/App.js
:
Breaking that down:
export
means we can use this file in other filesdefault
means that when weimport
this file elsewhere we do not have to call itApp
:
Last updated