mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-19 12:06:42 +08:00
### What problem does this PR solve? Feat: Show multiple chat boxes #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
10 lines
239 B
TypeScript
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>
|
|
);
|
|
}
|