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