اذهب إلى المحتوى

السؤال

نشر

السلام عليكم.

في الكود التالي ينبهني terminal إلى رسالة الخطأ التالية:

Array.prototype.map() expects a value to be returned at the end of arrow function 

مع العلم أن الكود يعمل بشكل صحيح.

الكود:

import React,{useState} from 'react'
import './Notes.css'
import Note from './Note'

function Notes() {
  const arr = ["A","B","C","D"]
  const [count,setCount] = useState(0)
  const handleAdd = () => {
    if (count < arr.length) {
      setCount(count+1)
      console.log(arr[count]);
    }
  }
  return (
    <div className='notes'>
      {
  arr.map((el, i) => { 
    if (i < count) return <Note title={el} key={i} i={i} />;
  })
}
      <button className='add-btn' onClick={handleAdd}>+</button>
    </div>
  )
}

export default Notes


//error message
WARNING in [eslint]
src\Notes\Notes.js
  Line 17:19:  Array.prototype.map() expects a value to be returned at the end of arrow function  array-callback-return

webpack compiled with 1 warning

شكرا لكم.

Recommended Posts

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...