import type { ReactNode } from 'react';

export interface NoteGridProps {
  /** Two `NoteCard`s. */
  children: ReactNode;
}

/**
 * Two-column grid of note cards (`.kwac-notes`), max 960px, stacked below 740px.
 */
export function NoteGrid({ children }: NoteGridProps) {
  return <div className="kwac-notes">{children}</div>;
}
