github-actions[bot]
Sync from https://github.com/felladrin/MiniSearch
ed8833e
raw
history blame contribute delete
291 Bytes
import { Stack } from "@mantine/core";
import ShowLogsButton from "../../../Logs/ShowLogsButton";
import ClearDataButton from "./ClearDataButton";
export default function ActionsForm() {
return (
<Stack gap="lg">
<ClearDataButton />
<ShowLogsButton />
</Stack>
);
}