From b6dd317293bdaf791624630e786e6c79bbd609be Mon Sep 17 00:00:00 2001 From: Henrik Larsson Date: Fri, 5 May 2023 10:16:20 +0200 Subject: [PATCH] Render category title --- app/[locale]/[[...slug]]/category-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/[locale]/[[...slug]]/category-page.tsx b/app/[locale]/[[...slug]]/category-page.tsx index 7cc1cfdc5..83af7e773 100644 --- a/app/[locale]/[[...slug]]/category-page.tsx +++ b/app/[locale]/[[...slug]]/category-page.tsx @@ -9,6 +9,6 @@ interface CategoryPageProps { export default function ProductPage({data }: CategoryPageProps) { return ( - <>Category page +
Category: {data?.title}
) }