mirror of
https://github.com/vercel/commerce.git
synced 2025-07-03 19:51:22 +00:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import type { ProductSlugAttr } from '@framework/types'
|
|
|
|
const getProductPath = (partialSpreeProduct: ProductSlugAttr): string => {
|
|
return `/${partialSpreeProduct.attributes.slug}`
|
|
}
|
|
|
|
export default getProductPath
|