Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import React from 'react';
  2. import './loader.style.scss';
  3. const Loader = (props) => {
  4. if (props.isLoading) {
  5. return (<div className="lds-ripple"><div></div><div></div></div>);
  6. } else {
  7. return null;
  8. }
  9.  
  10. }
  11.  
  12. export default Loader;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement