Files
low-code-react-app-b/src/components/FeatureIdeaCloud/FeatureIdeaTipsPanel.tsx

16 lines
661 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Panel } from 'reactflow'
export const FeatureIdeaTipsPanel = () => (
<Panel position="bottom-right">
<div className="bg-card border border-border rounded-lg shadow-lg p-2 text-xs text-muted-foreground max-w-sm">
<p className="mb-1">
💡 <strong>Tip:</strong> Double-click ideas to view details
</p>
<p className="mb-1">📦 Create groups to organize related ideas</p>
<p className="mb-1">🔗 Drag from handles on card edges to connect ideas</p>
<p className="mb-1"> Drag existing connection ends to remap them</p>
<p> Click connections to edit or delete them</p>
</div>
</Panel>
)