'use client' import { SentimentDisplay } from "@/components/sentiment-display/SentimentDisplay"; import { ClassifyOutputElement } from "@/util/classify"; export interface ISentimentList { out?: ClassifyOutputElement[]; } export function SentimentList({ out }: ISentimentList) { return (
Begin to write to see results!
}