What is the standard way of showing a loader icon before browser downloads all js files and loads react application.
Can I do something like this without breaking anything?
<div id="content" class="app">
Loading...
</div>
What is the standard way of showing a loader icon before browser downloads all js files and loads react application.
Can I do something like this without breaking anything?
<div id="content" class="app">
Loading...
</div>
One way of doing this using
component
life cycle methods.Yes.
Once your javascript has loaded, you can replace
Loading...
by rendering your react app into the same<div>