type SyncErrorProps = { message: string onRetry: () => void } export function SyncError(props: SyncErrorProps) { return ( {props.message} Retry ) }