Module: components/PageLoading

Displays material-ui CircularProgress component in the center of the screen. Used when page is loading content and there is nothing to show.

Source:
Example
if (user.loading) {
 return (
   <PageLoading />
 )
}