mirror of
https://github.com/rowyio/rowy.git
synced 2026-09-03 12:53:55 +02:00
10 lines
331 B
TypeScript
10 lines
331 B
TypeScript
export const columns = ["Name", "Price"];
|
|
|
|
export const rows = [
|
|
{ Name: "Wine - Vouvray Cuvee Domaine", Price: 22.73 },
|
|
{ Name: "Hold Up Tool Storage Rack", Price: 55.52 },
|
|
{ Name: "Squid - Tubes / Tenticles 10/20", Price: 91.34 },
|
|
{ Name: "Squeeze Bottle", Price: 3.11 },
|
|
{ Name: "Flour - Semolina", Price: 97.01 },
|
|
];
|