Code
tsx 8 lines 224 Bytes
Raw
1 import { Reviews } from "@/components/reviews";
2 import { getProduct } from "@/lib/sample-data";
3
4 export default async function Home() {
5 const product = await getProduct("mower");
6
7 return <Reviews product={product} />;
8 }