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 (

{intl.formatMessage({ id: "auditlog.title", defaultMessage: "Audit Log", })}

); } export default AuditLog;