Skip to content

Instantly share code, notes, and snippets.

@rajatk16
Created July 18, 2018 07:31
Show Gist options
  • Save rajatk16/7d893ee2bc124315df5c722dbb92c073 to your computer and use it in GitHub Desktop.
Save rajatk16/7d893ee2bc124315df5c722dbb92c073 to your computer and use it in GitHub Desktop.
import react from 'react';
/* Other imports */
/* Code */
export default class App extends React.Component {
render() {
const {userIsLoaded, user} = this.props;
if (!userIsLoaded) return <Loader />;
return (
/* Code */
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment