interface ConflictNotificationProps { onReload: () => void; onForceOverwrite: () => void; onDismiss: () => void; } export function ConflictNotification({ onReload, onForceOverwrite, onDismiss, }: ConflictNotificationProps) { return (
!

Conflict Detected

This file was modified elsewhere. Your changes could not be saved.

); }