From db2126b460a09cf6cc7c6ede550839b459adc1b4 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 19 Feb 2021 21:14:54 -0500 Subject: [PATCH 1/2] Add store in src --- src/store.js | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/store.js diff --git a/src/store.js b/src/store.js new file mode 100644 index 0000000..2643637 --- /dev/null +++ b/src/store.js @@ -0,0 +1,51 @@ +const store = [ + { + title: 'Para dias más productivos', + description: 'Agendas y bullet journals', + date: '2020-02-18', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613786388/image_7_teaj7e.png', + size: '', + }, + { + title: 'Para IOS', + description: 'Intereses, el nuevo Widget de Pinterest', + date: '2020-02-18', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613786730/image_2_fhq6jo.png', + size: '', + }, + { + title: 'Gafas de Sol', + description: 'Un accesorio que no puede faltar en tu look', + date: '2020-02-18', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613786735/image_1_cyn7va.png', + size: 'large', + }, + { + title: 'Un viaje por la arquitectura mexicana', + description: 'Estilo colonial y moderno', + date: '2020-02-17', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613786974/torres_4.png', + size: '', + }, + { + title: 'Espejos con mucho estilo para tu casa', + description: 'Ideas para decorar', + date: '2020-02-17', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613787059/decorar_5.png', + size: '', + }, + { + title: 'Cómo utilizarla para un mundo mejor', + description: 'Inteligencia Artificial', + date: '2020-02-17', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613787090/ia_6.png', + size: '', + }, + { + title: 'Por dias más productivos', + description: 'Agendas y bullet journals', + date: '2020-02-17', + img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613787095/agenda_7.png', + size: '', + }, +] \ No newline at end of file From da1be077ba0768fc5a8674b4c23d2b6031fcbb67 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 19 Feb 2021 21:33:00 -0500 Subject: [PATCH 2/2] Add export in store --- src/store.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/store.js b/src/store.js index 2643637..8cde747 100644 --- a/src/store.js +++ b/src/store.js @@ -1,4 +1,4 @@ -const store = [ +const STORE = [ { title: 'Para dias más productivos', description: 'Agendas y bullet journals', @@ -48,4 +48,6 @@ const store = [ img_url: 'https://res.cloudinary.com/robcar/image/upload/v1613787095/agenda_7.png', size: '', }, -] \ No newline at end of file +] + +export { STORE }; \ No newline at end of file