13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
type Props = {
|
|
title: string;
|
|
};
|
|
|
|
export function CardSectionHeader({ title }: Readonly<Props>) {
|
|
return (
|
|
<div className="flex flex-row justify-between">
|
|
<h1 className="font-bold text-primary">{title}</h1>
|
|
<div />
|
|
</div>
|
|
);
|
|
}
|