Files
ragflow/web/src/components/page-header.tsx
balibabu 7235638607 Feat: Show multiple chat boxes #3221 (#9443)
### What problem does this PR solve?

Feat: Show multiple chat boxes #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-08-13 15:59:51 +08:00

10 lines
239 B
TypeScript

import { PropsWithChildren } from 'react';
export function PageHeader({ children }: PropsWithChildren) {
return (
<header className="flex justify-between items-center bg-text-title-invert p-5">
{children}
</header>
);
}