Skip to content

Instantly share code, notes, and snippets.

@jplaza
Created April 26, 2023 00:34
Show Gist options
  • Save jplaza/f45b557dcc352da273d6f29a91168f39 to your computer and use it in GitHub Desktop.
Save jplaza/f45b557dcc352da273d6f29a91168f39 to your computer and use it in GitHub Desktop.
const data = [
{ category: "Fruits", price: "$1", stocked: true, name: "Apple" },
{ category: "Fruits", price: "$1", stocked: true, name: "Dragonfruit" },
{ category: "Fruits", price: "$2", stocked: false, name: "Passionfruit" },
{ category: "Vegetables", price: "$2", stocked: true, name: "Spinach" },
{ category: "Vegetables", price: "$4", stocked: false, name: "Pumpkin" },
{ category: "Vegetables", price: "$1", stocked: true, name: "Peas" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment