// frontend/components/automation/SuggestView.tsx — auto.jsx SuggestView 이식 "use client"; import { Icon } from "@/components/Icon"; import type { SuggestionOut } from "@/lib/types"; import { Flow } from "./Flow"; export function SuggestView({ suggests, accept, dismiss, }: { suggests: SuggestionOut[]; accept: (s: SuggestionOut) => void; dismiss: (s: SuggestionOut) => void; }) { return (