I need to initialize an array of objects in my state in react Ts. The array should look somewhat like this
  addressBook[
       details{
           name:"Tom"
           mail: "[email protected]"
           mobile: "1111111111"
       }
   ]
I need to create an array of objects like this which will contain multiple contacts with their details.
