Skip to content

Instantly share code, notes, and snippets.

View KirthiArun's full-sized avatar

Kirthika Selvaraj KirthiArun

  • Compusystems
  • India
View GitHub Profile
@KirthiArun
KirthiArun / AddShoppingList.js
Created July 31, 2020 10:21
React Hooks Samples
const ShoppingList = () => {
const itemsList = useArray(["Apples","Bananas","Milk"]);
return (
<div>
<p>Shopping List</p>
<button onClick={()=> itemsList.add(Math.random())}>
Add
</button>
{itemList.value.map((item, index) => {
return <li key={index} >