const getData = async()=>{
const res = await fetch('https://jsonplaceholder.typicode.com/comments/').then((res)=>res.json())
const initData = res.slice(0,20).map((it)=>{
return {
author : it.email,
content: it.body,
created_date : new Date().getTime(),
id: dataId.current++
}
})