const options = {
    method: 'post',
    url: 'https://jsonplaceholder.typicode.com/todos',
    data: {
      title: 'Hello World'
    }
  };

  axios(options).then(res => showOutput(res));
}