8 lines
177 B
React
8 lines
177 B
React
import React from 'react'
|
|
import ProductView from "../components/products/ProductView";
|
|
|
|
export default function ProductViewPage() {
|
|
return (
|
|
<ProductView />
|
|
)
|
|
} |