1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-10 01:46:59 +00:00

Render category title

This commit is contained in:
Henrik Larsson 2023-05-05 10:16:20 +02:00
parent 4bf59a61f6
commit b6dd317293

@ -9,6 +9,6 @@ interface CategoryPageProps {
export default function ProductPage({data }: CategoryPageProps) { export default function ProductPage({data }: CategoryPageProps) {
return ( return (
<>Category page</> <div>Category: {data?.title}</div>
) )
} }