react98

List View

A Windows 98 list view for files, settings, and tabular records.

Preview

list-view.exe
NameTypeSize
SystemFolder
WIN.COMApplication25 KB
README.TXTText Document4 KB

Installation

pnpm dlx shadcn@latest add https://react98-ui.vercel.app/r/list-view.json
npx shadcn@latest add https://react98-ui.vercel.app/r/list-view.json
yarn dlx shadcn@latest add https://react98-ui.vercel.app/r/list-view.json
bunx shadcn@latest add https://react98-ui.vercel.app/r/list-view.json

Usage

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} />;
}

On this page