mirror of
https://github.com/vercel/commerce.git
synced 2025-06-17 20:51:21 +00:00
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import type { ProductSlugAttr } from '../types';
|
|
|
|
const getProductPath = (partialSpreeProduct: ProductSlugAttr) => {
|
|
return `/${partialSpreeProduct.attributes.slug}`;
|
|
};
|
|
|
|
export default getProductPath;
|