import { Classifications, StolenDataEntry } from '../stolen-data-entry'; export function DataPreview({ entries, refresh, }: { entries: StolenDataEntry[]; refresh: () => void; }) { // currently not used, maybe scraped entirely in the future return ( {entries.map((entry) => ( ))}
Adres docelowy Źródło danych Treść danych Klasyfikacja
{entry.request.shorthost} {entry.source}:{entry.name} {entry.getValuePreview()} {/* always gonna have one key, because unwrapEntry is called above */}
); }