This commit is contained in:
2019-07-10 23:45:46 -04:00
parent ebda307995
commit d5b34dc81f
3 changed files with 29 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ const item = ({
};
};
const getItems = ({
const getDemoData = ({
eventId = faker.random.uuid(),
auction = 10,
ticket = 4,
@@ -120,4 +120,7 @@ const getItems = ({
return items;
};
module.exports = getItems;
module.exports = {
getDemoData,
item,
};