mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
15 lines
220 B
TypeScript
15 lines
220 B
TypeScript
import React from "react";
|
|
|
|
import styled from "styled-components";
|
|
|
|
const Root = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
function AuditLog() {
|
|
return <Root>AuditLog</Root>;
|
|
}
|
|
|
|
export default AuditLog;
|