Me learning react like an absolute chungus
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

9 wiersze
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. });