Me learning react like an absolute chungus
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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