Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. const [isLoading, setIsLoading] = useState(true);
  2.  
  3. setTitle(wait);
  4. setIsLoading(false);
  5.  
  6. { isLoading ? (
  7. <p>Loading ...</p>
  8. ) : (
  9. <div>
  10. <div style={{ height: 20 }}>{title}</div>
  11. <div style={{ display: "flex" }}>
  12. <Tile color="#4caf50" />
  13. <Tile color="#f44336" />
  14. <Tile color="#3f51b5" />
  15. <Tile color="#ffc107" />
  16. </div>
  17. </div>
  18. );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement