how to set data into server use put in frontend
function setStatus(){
//TODO*
let status = TRAFFIC_STATUS.value;
// Set the status to server
axios.put(URL,{color:status}).then(response =>{
console.log(response.data.color);
refreshDom(response.data.color);
})
}