move away from ehemer to resolve recursive loop.
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
import { Product } from "@/lib/product";
|
||||
import { area, length } from "enheter";
|
||||
|
||||
export const products = [
|
||||
// Sheet goods
|
||||
new Product(35, area("squareFoot", 4 * 8), { name: "Plywood" }),
|
||||
new Product(45, area("squareFoot", 4 * 8), { name: "OSB" }),
|
||||
new Product(45, area("squareFoot", 4 * 8), { name: "MDF" }),
|
||||
new Product(25, {l: 4, w : 8, u: "feet"}, { name: "Plywood" }),
|
||||
new Product(35, {l: 4, w : 8, u: "feet"}, { name: "MDF" }),
|
||||
new Product(40, {l: 4, w : 8, u: "feet"}, { name: "OSB" }),
|
||||
new Product(45, {l: 4, w : 8, u: "feet"}, { name: "Sheetrock" }),
|
||||
// Beams and trim
|
||||
new Product(45, length("foot", 1), { name: "trim" }),
|
||||
new Product(1, {l: 0.50, u : "feet"}, { name: "trim 3 inches" }),
|
||||
new Product(1, {l: 0.75, u : "feet"}, { name: "trim 3 inches" }),
|
||||
];
|
Reference in New Issue
Block a user