import { GitBranch } from 'lucide-react'; type GitRepositoryErrorStateProps = { error: string; details?: string; }; export default function GitRepositoryErrorState({ error, details }: GitRepositoryErrorStateProps) { return (

{error}

{details && (

{details}

)}

Tip: Run{' '} git init{' '} in your project directory to initialize git source control.

); }