import type { Component } from 'solid-js'; import { createSignal, For, Show } from 'solid-js'; import { ChevronDown, ChevronRight, AlertCircle } from 'lucide-solid'; interface IgnoredLinesListProps { lines: string[][]; } const IgnoredLinesList: Component = (props) => { const [isOpen, setIsOpen] = createSignal(false); return (
{(row, index) => ( )}
Line Raw Data
{index() + 1} {row.join(' | ')}

These lines were skipped because they don't follow the "Item : Description (Qty)" or "Item : Description" pattern.

); }; export default IgnoredLinesList;