import React from "react"; import type { TechData } from "../types"; interface TechSectionProps { data: TechData; } export function TechSection({ data }: TechSectionProps) { return (

{data.title}

{data.items.map((item, idx) => (

{item.title}

{item.content}

))}
); }