List View
A Windows 98 list view for files, settings, and tabular records.
Preview
| Name | Type | Size |
|---|---|---|
| System | Folder | |
| WIN.COM | Application | 25 KB |
| README.TXT | Text Document | 4 KB |
Installation
pnpm dlx shadcn@latest add https://react98-ui.vercel.app/r/list-view.jsonnpx shadcn@latest add https://react98-ui.vercel.app/r/list-view.jsonyarn dlx shadcn@latest add https://react98-ui.vercel.app/r/list-view.jsonbunx shadcn@latest add https://react98-ui.vercel.app/r/list-view.jsonUsage
import { ListView } from "@/components/ui/98/list-view";
const columns = [{ key: "name", label: "Name" }];
const rows = [{ id: "1", cells: { name: "README.TXT" } }];
export function Example() {
return <ListView columns={columns} rows={rows} />;
}