File size: 438 Bytes
6b3405c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Stack } from "@mantine/core";
import { Suspense, lazy } from "react";

const ClearDataButton = lazy(() => import("./ClearDataButton"));
const ShowLogsButton = lazy(() => import("../../../Logs/ShowLogsButton"));

export default function ActionsForm() {
  return (
    <Stack gap="lg">
      <Suspense>
        <ClearDataButton />
      </Suspense>
      <Suspense>
        <ShowLogsButton />
      </Suspense>
    </Stack>
  );
}