JSFiddle - React, Tailwind, and code Playground
by Zatcepin
JavaScript
const topic = 'test_message'
fetch('https://us-central1-sanbase-search-ea4dc.cloudfunctions.net/trackTrends', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
topic
})
})
.catch((err) => console.log(err))