Files
nginx-proxy-manager/frontend/src/pages/AuditLog/index.tsx
Jamie Curnow ae00ab09e4 Fixes to lang selection now apply immediately
Moved lang list to separate file
Cleaned up some lang workarounds
2021-07-27 11:40:44 +10:00

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;