mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
19.29.2022 9926a79503c9bd6454c076f2b60cd577f6061e4d
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import ErrorAlert from './ErrorAlert';
 
const ErrorAlertGenericRestFailure = (props) => <ErrorAlert
        titleKey={'common.alert.cantLoadData'}
        descriptionKey={'common.alert.genericRestAPIFailure'}
        action={{
            handleClick: props.handleClick,
            titleKey: 'common.alert.tryAgain'
        }}
    />
 
export default ErrorAlertGenericRestFailure;