feat: unis and product detail
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import ProductDetail from "../../../../../../../../../views/apps/ecommerce/products/detail/ProductDetail"
|
||||
|
||||
// In your page or component
|
||||
const productData = {
|
||||
// Your product object here
|
||||
}
|
||||
|
||||
export default function ProductPage() {
|
||||
return <ProductDetail />
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// Component Imports
|
||||
import ProductUnitTable from '../../../../../../../../views/apps/ecommerce/products/units/ProductUnitTable'
|
||||
|
||||
const eCommerceProductsIngredient = () => {
|
||||
return <ProductUnitTable />
|
||||
}
|
||||
|
||||
export default eCommerceProductsIngredient
|
||||
@@ -0,0 +1,8 @@
|
||||
// Component Imports
|
||||
import ProductUnitTable from '../../../../../../../../views/apps/ecommerce/products/units/ProductUnitTable'
|
||||
|
||||
const eCommerceProductsUnit = () => {
|
||||
return <ProductUnitTable />
|
||||
}
|
||||
|
||||
export default eCommerceProductsUnit
|
||||
Reference in New Issue
Block a user