mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
20 lines
458 B
JavaScript
20 lines
458 B
JavaScript
|
|
|
|
|
|
function ClearingAllLinesAlert() {
|
|
|
|
return (
|
|
<Alert
|
|
cancelButtonText={<T id={'cancel'} />}
|
|
confirmButtonText={<T id={'ok'} />}
|
|
intent={Intent.WARNING}
|
|
isOpen={clearLinesAlert}
|
|
onCancel={handleCancelClearLines}
|
|
onConfirm={handleConfirmClearLines}
|
|
>
|
|
<p>
|
|
<T id={'clearing_the_table_lines_will_delete_all_credits'} />
|
|
</p>
|
|
</Alert>
|
|
)
|
|
} |