const fetchTrainingQueue = () => {
const requestOptions = {
method: 'GET',
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${props.jwt}`
},
};
fetch('https://api.ai-server.becode.org/get_user_training_queue', requestOptions)
.then(response => response.json())
.then(data => {
setTrainingQueue(data)
})
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter