Skip to main content

Title

Title sub-component displays the product name.

src/components/product-detail/detail/title/index.tsx
export const Title = (props: ProductDetailProps) => {
return <S.Title>{props.product.name}</S.Title>;
};