mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-15 18:25:18 +02:00
10 lines
674 B
TypeScript
10 lines
674 B
TypeScript
|
|
// Conversational UX Widgets for SurfSense Browser Extension
|
||
|
|
// These widgets are embedded inline in chat messages for a conversation-first experience
|
||
|
|
|
||
|
|
export { ActionConfirmationWidget, type ActionConfirmationProps } from "./ActionConfirmationWidget";
|
||
|
|
export { ProactiveAlertCard, type ProactiveAlertCardProps, type ProactiveAlertData } from "./ProactiveAlertCard";
|
||
|
|
export { WatchlistWidget, type WatchlistWidgetProps, type WatchlistItem } from "./WatchlistWidget";
|
||
|
|
export { AlertWidget, type AlertWidgetProps, type AlertConfigData } from "./AlertWidget";
|
||
|
|
export { TokenAnalysisWidget, type TokenAnalysisWidgetProps, type TokenAnalysisData } from "./TokenAnalysisWidget";
|
||
|
|
|