mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
22 lines
619 B
TypeScript
22 lines
619 B
TypeScript
import type { ReactNode, RefObject } from 'react';
|
|
|
|
export interface KeyListContainerProps {
|
|
keys: unknown[];
|
|
children?: ReactNode;
|
|
ref?: RefObject<HTMLDivElement | null>;
|
|
}
|
|
|
|
export function KeyListContainer({ keys, children, ref }: KeyListContainerProps) {
|
|
const count = keys.length;
|
|
return (
|
|
<div ref={ref} className="flex grow min-h-0 pr-4 pt-3">
|
|
{count > 0 && (
|
|
<ul className="list bg-base-100 rounded-box shadow-sm border border-base-300 w-full min-h-0 overflow-auto">
|
|
{children}
|
|
</ul>
|
|
)}
|
|
{count === 0 && <p>还没有添加密钥。</p>}
|
|
</div>
|
|
);
|
|
}
|