import { useState } from "react"; import { Heading, HStack } from "@chakra-ui/react"; import { HelpDrawer, PrettyButton } from "components"; import { intl } from "locale"; import { CertificateAuthorityCreateModal } from "modals"; import TableWrapper from "./TableWrapper"; function CertificateAuthorities() { const [createShown, setCreateShown] = useState(false); return ( <> {intl.formatMessage({ id: "certificate-authorities.title" })} setCreateShown(true)}> {intl.formatMessage({ id: "certificate-authority.create" })} setCreateShown(false)} /> ); } export default CertificateAuthorities;