Me learning react like an absolute chungus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
246B

  1. function sendRequest(data: string, cb: (response: any) => void) {
  2. // ... sending a request with "data"
  3. return cb({data: 'Hi there!'});
  4. }
  5. sendRequest('Send this!', (response) => {
  6. console.log(response);
  7. return true;
  8. });