Files
Genarrative/src/components/preset-editor/LazyEditorFallback.tsx

8 lines
220 B
TypeScript

export function LazyEditorFallback({ label }: { label: string }) {
return (
<div className="rounded-2xl border border-white/10 bg-black/20 p-6 text-sm text-zinc-400">
{label}...
</div>
);
}