Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Last active May 2, 2019 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhishekjakhar/798a38fdb1775778d737eb0e3a3373ee to your computer and use it in GitHub Desktop.
Save abhishekjakhar/798a38fdb1775778d737eb0e3a3373ee to your computer and use it in GitHub Desktop.
Spinner.js (Mocktail App)
import React from 'react';
const Spinner = () => (
<div className="spinner">
<div className="bounce1"></div>
<div className="bounce2"></div>
<div className="bounce3"></div>
</div>
);
export default Spinner;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment