Files
ragflow/web/src/components/page-header.tsx
balibabu 3db819f011 Feat: Modify the background color of the agent canvas #3221 (#9020)
### What problem does this PR solve?

Feat: Modify the background color of the agent canvas #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-07-24 11:20:00 +08:00

10 lines
248 B
TypeScript

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