import { Stack } from "@mantine/core";

import MyTable from "./table";

export default async function TablePage() {
  return (
    <Stack>
      <MyTable />
    </Stack>
  );
}
