MiniSearch / client /components /Pages /Main /Menu /ActionsForm.tsx
github-actions[bot]
Sync from https://github.com/felladrin/MiniSearch
db8cd68
import { Stack } from "@mantine/core";
import ShowLogsButton from "@/components/Logs/ShowLogsButton";
import ClearDataButton from "./ClearDataButton";
export default function ActionsForm() {
return (
<Stack gap="lg">
<ClearDataButton />
<ShowLogsButton />
</Stack>
);
}