UNPKG

reviewit

Version:

A lightweight command-line tool that spins up a local web server to display Git commit diffs in a GitHub-like Files changed view

9 lines (8 loc) 227 B
import React from 'react'; import { FileDiff } from '../../types/diff.js'; interface FileListProps { files: FileDiff[]; selectedIndex: number; } declare const FileList: React.FC<FileListProps>; export default FileList;