|
@@ -1,7 +1,26 @@
|
|
|
import React, { FC } from 'react';
|
|
import React, { FC } from 'react';
|
|
|
|
|
|
|
|
|
|
+import { useTranslation } from 'react-i18next';
|
|
|
|
|
+
|
|
|
export const AuditLogDisableMode: FC = () => {
|
|
export const AuditLogDisableMode: FC = () => {
|
|
|
|
|
+ const { t } = useTranslation();
|
|
|
|
|
+
|
|
|
return (
|
|
return (
|
|
|
- <>AuditLogDisableMode</>
|
|
|
|
|
|
|
+ <div id="content-main" className="content-main container-lg">
|
|
|
|
|
+ <div className="container">
|
|
|
|
|
+ <div className="row justify-content-md-center">
|
|
|
|
|
+ <div className="col-md-6 mt-5">
|
|
|
|
|
+ <div className="text-center">
|
|
|
|
|
+ <h1><i className="icon-exclamation large"></i></h1>
|
|
|
|
|
+ <h1 className="text-center">{t('AuditLog')}</h1>
|
|
|
|
|
+ <h3
|
|
|
|
|
+ // eslint-disable-next-line react/no-danger
|
|
|
|
|
+ dangerouslySetInnerHTML={{ __html: t('admin:audit_log_management.disable_mode_explain') }}
|
|
|
|
|
+ />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
);
|
|
);
|
|
|
};
|
|
};
|