mirror of
https://github.com/mblanke/holiday-travel-app.git
synced 2026-03-01 05:20:22 -05:00
9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
export default function Section({ title, children }: { title: string, children: React.ReactNode }) {
|
|
return (
|
|
<section className="space-y-3">
|
|
<h2 className="text-lg font-semibold">{title}</h2>
|
|
<div className="card p-4">{children}</div>
|
|
</section>
|
|
)
|
|
}
|