JSFiddle - React, Tailwind, and code Playground

by Lloyd Atkinson

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.js"></script>

Babel + JSX

const api = '';

const getWithBackgroundOperation = (api, expressions) => {
	const successfulRequests = [];
	const pendingRequests = [];
    const failedRequests = [];
    
    for (const expression of expressions) {
    	
    }
};