summaryrefslogtreecommitdiff
path: root/src/pages/shop/brands/index.jsx
blob: 5c01fd19bd098e9fe9e2f59c3dc848c93804caed (plain)
1
2
3
4
5
6
7
8
9
10
import BasicLayout from '@/core/components/layouts/BasicLayout'
import BrandsComponent from '@/lib/brand/components/Brands'

export default function Brands() {
  return (
    <BasicLayout>
      <BrandsComponent />
    </BasicLayout>
  )
}