diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-23 15:29:35 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-23 15:29:35 +0700 |
| commit | 2dd5b10049ff62656f160a9aa5b6627cd7ccbefc (patch) | |
| tree | 30b3b273f7a5542b39d2634a3d5dc4a5d4665547 /src/pages | |
| parent | ccf4174e7e2e8a3f4cc35f243695f900f2172bb4 (diff) | |
fix
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/shop/brands/index.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pages/shop/brands/index.jsx b/src/pages/shop/brands/index.jsx new file mode 100644 index 00000000..5c01fd19 --- /dev/null +++ b/src/pages/shop/brands/index.jsx @@ -0,0 +1,10 @@ +import BasicLayout from '@/core/components/layouts/BasicLayout' +import BrandsComponent from '@/lib/brand/components/Brands' + +export default function Brands() { + return ( + <BasicLayout> + <BrandsComponent /> + </BasicLayout> + ) +} |
