<Button onClick={handleGet }>Go</Button>

//user function
  const handleGet = async () => {
    go();
  };


//import content 
export const go= params =>
  request(`${BASEURL}/go`, {
    params,
    method: 'get',
    showTips: true,
  });