15
common/resources/client/ui/layout/dashboard-content-header.tsx
Executable file
15
common/resources/client/ui/layout/dashboard-content-header.tsx
Executable file
@@ -0,0 +1,15 @@
|
||||
import {ReactNode} from 'react';
|
||||
import clsx from 'clsx';
|
||||
|
||||
interface DashboardContentHeaderProps {
|
||||
children: ReactNode;
|
||||
className?: string;
|
||||
}
|
||||
export function DashboardContentHeader({
|
||||
children,
|
||||
className,
|
||||
}: DashboardContentHeaderProps) {
|
||||
return (
|
||||
<div className={clsx(className, 'dashboard-grid-header')}>{children}</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user