mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
30 lines
529 B
TypeScript
30 lines
529 B
TypeScript
import React from "react";
|
|
|
|
import { intl } from "locale";
|
|
import styled from "styled-components";
|
|
|
|
const Root = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
function AuditLog() {
|
|
return (
|
|
<Root>
|
|
<div className="card">
|
|
<div className="card-status-top bg-cyan" />
|
|
<div className="card-header">
|
|
<h3 className="card-title">
|
|
{intl.formatMessage({
|
|
id: "auditlog.title",
|
|
defaultMessage: "Audit Log",
|
|
})}
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
</Root>
|
|
);
|
|
}
|
|
|
|
export default AuditLog;
|