Skip to content

Instantly share code, notes, and snippets.

@clintonyeb
Created May 17, 2020 19:50
Show Gist options
  • Save clintonyeb/7627317cd9be7202b9ad7a1b917d586a to your computer and use it in GitHub Desktop.
Save clintonyeb/7627317cd9be7202b9ad7a1b917d586a to your computer and use it in GitHub Desktop.
import React from 'react';
import './style.css';
//Empty grid used when app is in loading status
const Loader = ()=> (
<div className="lds-grid">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>);
export default Loader;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment