9 lines
166 B
React
9 lines
166 B
React
import React from 'react'
|
|
import ProductsCom from '../components/products/ProductsCom'
|
|
|
|
export default function ProductsPage() {
|
|
return (
|
|
<ProductsCom />
|
|
)
|
|
}
|