import { useState } from 'react' import { cn } from '../lib/utils' import type { PRStatus } from '../types/api' // Global PR view — shows PRs across a known repo (MVP: uses first repo) // In the full build this would aggregate across all user repos export default function PRsPage() { const [status, setStatus] = useState('open') return (

Pull Requests

{(['open', 'merged', 'closed'] as PRStatus[]).map(s => ( ))}

Navigate to a repository to view its pull requests.

) }