Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import type { ReactNode } from "react"; export interface DashboardSectionProps { title: string; children: ReactNode; } export function DashboardSection({ title, children }: DashboardSectionProps) { return ( <div className="mb-10"> <h2 className="text-lg font-semibold text-dark dark:text-gray-100 mb-4 pb-2 border-b border-gray-200 dark:border-gray-700"> {title} </h2> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> {children} </div> </div> ); } export default DashboardSection; |