Skip to content

Instantly share code, notes, and snippets.

@temmyjay001
Last active May 23, 2020 09:35
Show Gist options
  • Select an option

  • Save temmyjay001/38c94e867b2c329bc4b3b53daacb1bda to your computer and use it in GitHub Desktop.

Select an option

Save temmyjay001/38c94e867b2c329bc4b3b53daacb1bda to your computer and use it in GitHub Desktop.
import { v4 } from "http://deno.land/std/uuid/mod.ts";
import { Product } from "../types/types.ts";
let products: Product[] = [
{
id: "1",
name: "Scott Bike",
description: "scott's products",
price: 18.89,
},
{
id: "2",
name: "Scott tricycle",
description: "scott's products",
price: 38.66,
},
{
id: "3",
name: "Scott car",
description: "scott's products",
price: 169.15,
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment