import Button from "./ui/Button"; interface DataViewerProps { onGetRandomSample: () => void; imageUrl: string | null; label: string | null; } export default function DataViewer({ onGetRandomSample, imageUrl, label }: DataViewerProps) { return (
{ imageUrl && (
Sample
Label: {label}
) }
) }