Last active
May 23, 2020 09:35
-
-
Save temmyjay001/38c94e867b2c329bc4b3b53daacb1bda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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