File size: 291 Bytes
06b47dc
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
  );
}