Me learning react like an absolute chungus
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
210B

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