20 lines
584 B
TypeScript
20 lines
584 B
TypeScript
import { Suspense } from "react";
|
|
import { Center, Loader } from "@mantine/core";
|
|
import PageBody from "@/app/barcode-templates/components/shared/PageBody/PageBody";
|
|
import PageContainer from "@/components/layout/PageContainer/PageContainer";
|
|
|
|
export default async function BarcodeTemplatesPage() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<Center h="50vh">
|
|
<Loader size="lg" />
|
|
</Center>
|
|
}>
|
|
<PageContainer>
|
|
<PageBody />
|
|
</PageContainer>
|
|
</Suspense>
|
|
);
|
|
}
|