'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 (
{Array.isArray(out) ? out.map(({ label, score }) => ) :

Begin to write to see results!

}
) }