Skip to content

Commit

Permalink
feat: add product list view
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobernardoaf committed Nov 16, 2023
1 parent ca94a8f commit 720f4f7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/views/whatsAppCatalogs/CatalogProducts.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<template>
<ProductList class="whatsapp-catalog-products" :catalogName="catalogName" />
</template>

<script>
import ProductList from '@/components/whatsAppCatalogs/ProductList';
export default {
name: 'WhatsAppCatalogsList',
props: {
catalogName: {
type: String,
required: true,
},
},
components: {
ProductList,
},
};
</script>

<styles scoped lang="scss">
.whatsapp-catalog-products {
display: flex;
overflow: hidden;
height: 100%;
}
</styles>

0 comments on commit 720f4f7

Please sign in to comment.