import type { ReactNode } from 'react';

export interface SpecGridProps {
  /** Two `SpecColumn`s, e.g. "Anhängerkupplung" and "Elektrosatz". */
  children: ReactNode;
}

/**
 * Two-column grid of spec panels (`.kwac-specs`), max 960px. Single column
 * below 740px. Put it inside a `Section alt`.
 */
export function SpecGrid({ children }: SpecGridProps) {
  return <div className="kwac-specs">{children}</div>;
}
