mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
Converted over all text to i18n
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import React from "react";
|
||||
|
||||
import { FormattedMessage } from "react-intl";
|
||||
import styled from "styled-components";
|
||||
|
||||
const Root = styled.div`
|
||||
@@ -8,7 +9,18 @@ const Root = styled.div`
|
||||
`;
|
||||
|
||||
function AuditLog() {
|
||||
return <Root>AuditLog</Root>;
|
||||
return (
|
||||
<Root>
|
||||
<div className="card">
|
||||
<div className="card-status-top bg-cyan" />
|
||||
<div className="card-header">
|
||||
<h3 className="card-title">
|
||||
<FormattedMessage id="auditlog.title" defaultMessage="Audit Log" />
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
</Root>
|
||||
);
|
||||
}
|
||||
|
||||
export default AuditLog;
|
||||
|
Reference in New Issue
Block a user