Render category title

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

View File

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