mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import type { ProductSlugAttr } from '../types'
|
|
|
|
const getProductPath = (partialSpreeProduct: ProductSlugAttr) => {
|
|
return `/${partialSpreeProduct.attributes.slug}`
|
|
}
|
|
|
|
export default getProductPath
|