import React from "react"; import styles from "./Sections.module.css"; interface SectionsData { name: string; url: string; } interface SectionsProps { /* Whether to display the "Sections" title and separator that appears on the left. */ showHeader?: boolean; data: SectionsData[]; } export function Sections({ data, showHeader = true }: SectionsProps) { return (
{showHeader ? ( <>

Sections

) : ( "" )}
); }