import React from "react"; import type { Floor } from "../types"; import { ProductGrid } from "./ProductGrid"; export function FloorSection({ floor, basePath = "" }: { floor: Floor; basePath?: string }) { return (

{floor.title}

查看更多
{floor.hero ? ( {floor.hero.title ) : (
)}
); }