22 lines
649 B
TypeScript
22 lines
649 B
TypeScript
import React from 'react';
|
|
|
|
export interface PageHeaderProps {
|
|
title: string;
|
|
subtitle?: string;
|
|
actions?: React.ReactNode;
|
|
}
|
|
|
|
export const PageHeader: React.FC<PageHeaderProps> = ({ title, subtitle, actions }) => {
|
|
return (
|
|
<div className="bg-white border-b border-gray-200 px-6 py-6">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">{title}</h1>
|
|
{subtitle && <p className="mt-1 text-sm text-gray-600">{subtitle}</p>}
|
|
</div>
|
|
{actions && <div className="flex items-center gap-3">{actions}</div>}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|